I want to be able to create a 2d array the size of the width and height I read from a file, but I get errors when I say:
int array[0][0]
array = new int[width][height]
See Question&Answers more detail:osI want to be able to create a 2d array the size of the width and height I read from a file, but I get errors when I say:
int array[0][0]
array = new int[width][height]
See Question&Answers more detail:osYou should use pointer to pointers :
int** array;
array = new int*[width];
for (int i = 0;i<width;i++)
array[i] = new int[height];
and when you finish using it or you want to resize, you should free the allocated memory like this :
for (int i = 0;i<width;i++)
delete[] array[i];
delete[] array;
To understand and be able to read more complex types, this link may be useful :
http://www.unixwiz.net/techtips/reading-cdecl.html
Hope that's Helpful.