1.

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

A. 0
B. 5
C. 4
D. 1
E. rror
Answer» C. 4


Discussion

No Comment Found