1.

What will be the output of the program if the array begins 1200 in memory?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int arr[]={2, 3, 4, 1, 6};_x000D_ printf("%u, %u, %u\n", arr, &arr[0], &arr);_x000D_ return 0;_x000D_ }

A. 1200, 1202, 1204
B. 1200, 1200, 1200
C. 1200, 1204, 1208
D. 1200, 1202, 1200
Answer» C. 1200, 1204, 1208


Discussion

No Comment Found