+ 10
What is the output of this program???
#include <stdio.h> int fun(int(*)()); int main() { fun(main); printf("hii\n"); return 0; } int fun(int (*p)()) { printf("hello\n"); return 0; }
3 Respostas
+ 10
hello
hii
+ 8
hello
hii
Thats the answer...
#include <stdio.h> int fun(int(*)()); int main() { fun(main); printf("hii\n"); return 0; } int fun(int (*p)()) { printf("hello\n"); return 0; }