#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
Which function is not called in the following C program?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Which function is not called in the following C program?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!