MCQOPTIONS
Saved Bookmarks
| 1. |
Point out the error in the following program. #include int main() { int (*p)() = fun; (*p)(); return 0; } int fun() { printf("IndiaBix.com\n"); return 0; } |
| A. | Error: in int(*p)() = fun; |
| B. | Error: fun() prototype not defined |
| C. | No error |
| D. | None of these |
| Answer» C. No error | |