-
Comment on the following two operations.
int *arr[] = {{11, 20, 13}, {11, 20, 31, 40}}; //- 1
int array[5][5] = {{10, 12, 30}, {11, 21, 30, 14}};//- 2
-
- 1 won’t work, 2 will work
- Neither of them will work
- 1 and 2, both will work
- 1 will work, 2 will not
- None of these
Correct Option: A
1 won’t work, 2 will work