//Create array of integers on heap #define SIZE 262144 int *myArray[SIZE] = new int[SIZE]; delete [] myArray;