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?

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
"My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.

printf("My salary was increased by 15/%!");
printf("My salary was increased by 15%%!");
printf("My salary was increased by 15'%'!");
printf("My salary was increased by 15%!");

ANSWER DOWNLOAD EXAMIANS APP