C Programming
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?

It will not compile because not enough initializers are given
12
7
6
24

ANSWER DOWNLOAD EXAMIANS APP