C Programming
What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i);

10 11 12 13 14
10 11 12 13 14 15
9 10 11 12 13
Infinite loop
None of these

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