โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
int show();
void display(int(*)());
int (*f)();
f=show;
display(f);
return 0;
}
int show(){
printf("This is show! ");
return 0;
}
void display(int (*ff)()){
(*ff)();
}