

MCQOPTIONS
Saved Bookmarks
1. |
Comment on the following two operations.int *arr[] = {{11, 20, 13}, {11, 20, 31, 40}}; //- 1int array[5][5] = {{10, 12, 30}, {11, 21, 30, 14}};//- 2 |
A. | 1 won t work, 2 will work |
B. | Neither of them will work |
C. | 1 and 2, both will work |
D. | 1 will work, 2 will not |
E. | None of these |
Answer» B. Neither of them will work | |