Page 1 of 1

Which function is not called in the following C program?

Posted: Wed Jul 13, 2022 7:54 pm
by answerhappygod
#include <stdio.h> 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