Hello,
(Visual Studio 6.0 - C++ : Console win32 application).
Can I declare an array which I don't know it's length on first time,
but I want to reference it as an array (not linked table with pre & next).
i.e :
double myLongArray[1000]
...
and suppose somewhere in the code - the size of myLongArray is 1002 -
can I change its size on runtime ?
Thanks :)