C Programming
Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte)

30
None of these
15
10
50

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