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);}

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

comes before the first executable statement
has # as the first character
need not start on the first column
need not start on a new line

ANSWER DOWNLOAD EXAMIANS APP