Which function will not be called in the following program?

Loading

โœช Choose the correct option.

Which function will not be called in the following 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 these

Leave a Comment