#include<stdio.h> 
int mai

Loading

Choose the correct option.

#include 
int main() {
int (*p)() = fun;
(*p)();
return 0;
}
int fun() {
printf("Hello World ");
return 0;
}

A. error: in int(*p)() = fun;
B. error: ‘fun’ undeclared (first use in this function)
C. No error
D. None of these

Leave a Comment