C Programming :: C Fundamentals
- "My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.
-
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?