Why doesn't C have nested functions?
Answers were Sorted based on User's Feedback
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 |
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 |
What is the size of enum in c?
How many keywords are there in c?
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
Who invented bcpl language?
What is the purpose of 'register' keyword in c language?
What is the difference between exit() and _exit() function in c?
Can you write the function prototype, definition and mention the other requirements.
What is the acronym for ansi?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
what is the full form of c language
How are pointers declared in c?
What is a const pointer, and how does it differ from a pointer to a const?