RE: [GD-General] not sure where to post this question... bit C++ implementation specific....
Brought to you by:
vexxed72
From: Fredrik B. <Fre...@st...> - 2004-07-07 09:47:30
|
> How would that help? In C++ you simply cannot do this: >=20 > int a =3D 6; > int array[a]; But you could always do std::vector<int> array(a); To get around it :-) STL is your friend. /Fredrik Bengtsson Blueberry3D |