โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
int i,show1(),show2(),show3();
int (*f[3])();
f[0]=show1;
f[1]=show2;
f[2]=show3;
for(i=0;i<=2;i++)
(*f[i])();
return 0;
}
int show1(){
printf("Hello ");
}
int show2(){
printf("Good ");
}
int show3(){
printf("Morning");
}