Howdy !
Does anybody know how to
dynamically allocate arrays of more than one dimension,
at least TWO dimensions : array[x][y]
Printable View
Howdy !
Does anybody know how to
dynamically allocate arrays of more than one dimension,
at least TWO dimensions : array[x][y]
say " make an array like this
int myarray[x][y];
You can do that in this way, maybe... ^_^
int (*myarray)[y];
myarray=new int[x][y];
Is this Your answer?
by nfuox