Discussion :: Declarations and Initializations
-
Point out the error in the following program.
#include
Answer : Option B
Explanation :
The compiler will not know that the function int fun() exists. So we have to define the function prototype of int fun();
To overcome this error, see the below program
#include
int main()
{
int (*p)() = fun;
(*p)();
return 0;
}
int fun()
{
printf("Freshergate.com\n");
return 0;
}
Be The First To Comment