C Programming
The declarationint (*p) [5];means

None of these.
p is one dimensional array of size 5, of pointers to integers.
The same as int *p[
p is a pointer to a 5 elements integer array.

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