C Programming
What is the maximum number of dimensions an array in C may have?

8
Theoratically no limit. The only practical limits are memory size and compilers.
20
2
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