int** a = new int*[rowCount]; for(int i = 0; i < rowCount; ++i) a[i] = new int[colCount];
for (int i = 0; i < numRows; i++) { delete [] world[i]; // world[i] = 0; // <- don't have to do this } delete [] world; // <- because they won't exist anymore after this world = 0;