Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Point out the error in the following program. #include<stdio.h> 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"); } ?->(Show Answer!)
1. Point out the error in the following program. #include<stdio.h> 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"); }