

MCQOPTIONS
Saved Bookmarks
1. |
Point out the error in the following program. #include void display(int (*ff)()); int main() { int show(); int (*f)(); f = show; display(f); return 0; } void display(int (*ff)()) { (*ff)(); } int show() { printf("IndiaBIX"); } |
A. | Error: invalid parameter in function display() |
B. | Error: invalid function call f=show; |
C. | No error and prints "IndiaBIX" |
D. | No error and prints nothing. |
Answer» D. No error and prints nothing. | |