Is there a way to have an array with an undeclared size? It would automatically put the data into the appropriate subscript without delaring the subscript each time. So something like this
int Array[]
Array + 1,
Array + 1,
Array + 1,
<<array; (equals 3 )
Instead of something like this,
int Array(3)
Array(0) + 1
Array(1) + 1
Array(2) + 1
Array(1) + Array (2) etc etc..
So it's like a simple standard variable declaration except each time it is written to, the written data is stored like an array, instead of being overwritten each time like a standard variable. The normal way of declaring an array is also bulky. It takes as much time / effort to interact with than a set of ordinary variables. Rather self defeating...Also, it's better that the array creates only the subscripts on a need to do basis, so one would'nt have a bunch of empty wasted array space beacause the array(10000) could'nt all be filled.
Sorry if this is vague.