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
24
6
7
12

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is a block of code that performs a specific task. It has a name and it is reusable.
All of these
Function is the fundamental modular unit. A function is usually designed to perform a specific task.
Function is a block of statements that perform some specific task.

ANSWER DOWNLOAD EXAMIANS APP