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

ANSWER DOWNLOAD EXAMIANS APP