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
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board