MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #includeint 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 | |