Question: Which of the following correctly declares a dynamic 2d array of size x * y on the heap? Justify why the others are incorrect. a)

Which of the following correctly declares a dynamic 2d array of size x * y on the heap? Justify why the others are incorrect. a) int** p = new int[x][y]; b) int** p = new int*[x]; for(int i=0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
