

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program assuming that the array begins at the location 1002 and size of an integer is 4 bytes?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int a[3][4] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 };_x000D_ printf("%u, %u, %u\n", a[0]+1, *(a[0]+1), *(*(a+0)+1));_x000D_ return 0;_x000D_ } |
A. | 448, 4, 4 |
B. | 520, 2, 2 |
C. | 1006, 2, 2 |
D. | Error |
Answer» D. Error | |