What is the output of the following code?
int **p;p = new int* [5] ;for (int i = 0; i<5; i++) p[i] = new int[ 3 ] ;for (int i = 1; i<5; i++)for (int j = 0; j<3; j++) p[i][j] = 2 * i + j;for (int i = 1; i<5; i++){for (int j = 0; j<3; j++)cout ≪ p[i][j] ≪ " ";cout ≪ end1;}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.