MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of below program?int main(){for(; ;)for(; ;)printf("Hello..");return 0;} |
| A. | Compilation Error |
| B. | Runtime Error |
| C. | Hello is printed one time |
| D. | Hello is printed infinite times |
| Answer» E. | |