) Complete the following main function which allocates and deallocates the memory for a dynamic two (6) dimensional array. Write ONLY the missing code that should be placed where each of the numbers appear in the listing. int main ( code example
Example: c++ delete dynamically allocated array
int length = 69;
int * numbers = new int[length];
delete[] numbers;