Vidyalelo
C Programming · Q229

Pointer

Programming · C Programming · question 229

Q229

Which function is not called in the following C program? #include void first() printf("first"); void second() first(); void third() second(); void main() void (*ptr)(); ptr = third; ptr();

A.
Function first
B.
Function second
C.
Function third
D.
None of the mentioned
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board