MCQOPTIONS
Saved Bookmarks
| 1. |
main() { int x = 0; for (; ;) { if ( x++ == 4) break; continue; } printf(“x = %d\n”, x); } What will be printed when the above code is executed? |
| A. | X = 0 |
| B. | X = 1 |
| C. | X = 4 |
| D. | X = 5 |
| Answer» E. | |