MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int const Result() { printf("interviewmania.com"); return 0; } void main() { Result(); } |
| A. | interviewmania.com is printed infinite times |
| B. | interviewmania.com |
| C. | Runtime Error |
| D. | Error because function name cannot be preceded by const |
| E. | None of these |
| Answer» C. Runtime Error | |