C Programming
What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);}

Error
x=5
x=1
x=0
x=4

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