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?

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

ANSWER DOWNLOAD EXAMIANS APP