1.

short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code?~!

A. 6
B. 7
C. 12
D. 24
E. It will not compile because not enough initializers are given
Answer» E. It will not compile because not enough initializers are given


Discussion

No Comment Found