✪ Choose the correct option.
#include
int main() {
int (*p)() = fun;
(*p)();
return 0;
}
int fun() {
printf("Hello World ");
return 0;
}
#include
int main() {
int (*p)() = fun;
(*p)();
return 0;
}
int fun() {
printf("Hello World ");
return 0;
}