[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

C Programming :: Functions - Discussion

Home > C Programming > Functions > MCQs Questions Discussion

47 / 53

Choose the correct option.

Which function will not be called in the following program?

#include <stdio.h>
void first()
{
printf("first");
}
void second()
{
first();
}
void third()
{
second();
}
void main()
{
void (*ptr)();
ptr = third;
ptr();
}

AFunction first

BFunction second

CFunction third

DNone of these

Answer: Option (Login/Signup)

Show Explanation

Asked In :: TCS TCS NQT

Post Your Answer Here:     

No Discussion on this question yet!