- 
					 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();
 }
- 
                        - Function "f"
- Function "fun"
- Function "function"
- All of above
- None of these
 
Correct Option: E
function, fun and f all functions are called in the following c program.
 
	