1.

Consider the following definition of array in C:int a [ ] [2] [3]= { { {1, 2, 3}, {4, 5, 6} }, { {10, 20, 30}, {40, 50, 60} }, { {100, 200, 300}, {400, 500, 600} }};Which of the following expressions would give value 1 for the array defined above?(a) a[0] [0] [0](b) * * * a(c) * * * a[0](d) * * a[0] [0]The correct answer is :

A. (a) and (c)
B. (a) and (d)
C. (a) and (b)
D. (c) and (d)
Answer» D. (c) and (d)


Discussion

No Comment Found