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=0
Error
x=5
x=4
x=1

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Acts before compilation
All of these
Takes care of macros
Takes care of include files
Takes care of conditional compilation

ANSWER DOWNLOAD EXAMIANS APP