What will be the output of the program?
#includestdio.h
int fun(int(*)());

int main()
{
fun(main);
printf("Hi\n");
return 0;
}
int fun(int (*p)())
{
printf("Hello ");
return 0;
}


Posted on by