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();
int (*f)();
f=show;
printf("address=%d ",f);
(*f)();
return 0;
}
int show(){
printf("This is show! ");
return 0;
}

A. address=address of show()
This is show!
B. NULL
C. compiler error
D. Garbage value
Garbage value