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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Comparing the two strings to define the larger one.
Extracting a substring out of a string.
Merging two strings.
Combining two strings.
Partitioning the string into two strings.

ANSWER DOWNLOAD EXAMIANS APP