int x = 0; for ( ; ; ) { if (x++ == 4) break; continue; } printf(x=%dn, x);
What will be printed when the sample code above is executed?
Reveal answer
Fill a bubble to check yourself
int x = 0; for ( ; ; ) { if (x++ == 4) break; continue; } printf(x=%dn, x);
What will be printed when the sample code above is executed?