|
-
April 25th, 1999, 12:57 PM
#1
How to dynamically allocate multidimensional Arrays ?
Howdy !
Does anybody know how to
dynamically allocate arrays of more than one dimension,
at least TWO dimensions : array[x][y]
-
April 25th, 1999, 10:45 PM
#2
Re: How to dynamically allocate multidimensional Arrays ?
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|