โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
int main() {
int show();
int (*f)();
f=show;
printf("address=%d ",f);
(*f)();
return 0;
}
int show(){
printf("Hello World ");
return 0;
}