Discussion :: Functions
-
What will be the output of the program?
#include
int fun(int(*)()); int main() { fun(main); printf("Hi\n"); return 0; } int fun(int (*p)() ) printf("Hello "); return 0; }
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment