Home » C Programming » Pointers » Question
  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();
    }
    1. Function "f"
    2. Function "fun"
    3. Function "function"
    4. All of above
    5. None of these
Correct Option: E

function, fun and f all functions are called in the following c program.



Your comments will be displayed only after manual approval.