MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int n = 0; for (n < 3; n++) printf("Hey..."); } |
| A. | Hey... |
| B. | 0 |
| C. | 3 |
| D. | Compilation Error |
| E. | None of these |
| Answer» E. None of these | |