Why doesn't C have nested functions?

Answers were Sorted based on User's Feedback



Why doesn't C have nested functions?..

Answer / bonu.satishkumar

C is only pop but not OOP's. so C havn't nested functions.
The meaning of NESTED FUNCTION is "a function is existed
in the another function".

Is This Answer Correct ?    0 Yes 5 No

Why doesn't C have nested functions?..

Answer / phani kumar s

we have the power ful recursion.

the function to be terminate at one place which may be
difficult in this.

Is This Answer Correct ?    0 Yes 9 No

Post New Answer

More C Interview Questions

What is the size of enum in c?

0 Answers  


How many keywords are there in c?

0 Answers  


What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture, Wipro,


Who invented bcpl language?

0 Answers  


What is the purpose of 'register' keyword in c language?

0 Answers  


What is the difference between exit() and _exit() function in c?

0 Answers  


Can you write the function prototype, definition and mention the other requirements.

0 Answers   Adobe,


What is the acronym for ansi?

0 Answers  


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


what is the full form of c language

9 Answers   Satyam, TCS, VNC,


How are pointers declared in c?

0 Answers  


What is a const pointer, and how does it differ from a pointer to a const?

2 Answers  


Categories