MCQOPTIONS
Saved Bookmarks
| 1. |
Comment on the output of this C code? int const print() { printf("AllIndiaExams.in"); return 0; } void main() { print(); } |
| A. | AllIndiaExams.in is printed infinite number of times |
| B. | AllIndiaExams.in |
| C. | Runtime Error |
| D. | complilation error |
| Answer» C. Runtime Error | |