MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #include<stdio.h> int i; int fun(); int main() { while(i) { fun(); main(); } printf("Hello n"); return 0; } int fun() { printf("Hi"); } |
| A. | Hello |
| B. | Hi Hello |
| C. | No output |
| D. | Infinite loop |
| Answer» B. Hi Hello | |