What will be the output of the following program on GCC?

		
					

Loading

โœช 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)();
}

A. This is show!
B. Garbage value
C. Compiler error
D. Run time error