1.

Which function is not called in the following C program?
 #include <stdio.h>
void f()
{
printf("f");
}
void fun()
{
f();
}
void function()
{
fun();
}
void main()
{
void (*p)();
p = function;
p();
}

A. Function "f"
B. Function "fun"
C. Function "function"
D. All of above
E. None of these
Answer» F.


Discussion

No Comment Found