Hi, everyone:
I want to create an infinite array, where normally we initialize an array like this:
int array[10];
There is 10 spaces in the computer reserved for array[].
However if I wish to have an array with no limit space, but the number of spaces of an array is increasing based on need, e.g. below 10 spaces or above, would that be possible?
Thanks ;)