1.

What will be the output of the program assuming that the array begins at location 1002?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int a[2][3][4] = { {1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2}, _x000D_ {2, 1, 4, 7, 6, 7, 8, 9, 0, 0, 0, 0} };_x000D_ printf("%u, %u, %u, %d\n", a, *a, **a, ***a);_x000D_ return 0;_x000D_ }

A. 1002, 2004, 4008, 2
B. 2004, 4008, 8016, 1
C. 1002, 1002, 1002, 1
D. Error
Answer» D. Error


Discussion

No Comment Found