MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? void main() { int i = 0; if (i == 0) { printf("Hello"); continue; } } |
| A. | Hello is printed infinite times |
| B. | Hello |
| C. | varies |
| D. | Compile time error |
| Answer» E. | |