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 |
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
Which built-in library function can be used to match a patter from the string?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
What is pointer in c?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What are the characteristics of arrays in c?
inline function is there in c language?
Why c is called procedure oriented language?
Is there any possibility to create customized header file with c programming language?
Which function in C can be used to append a string to another string?
What is a pointer on a pointer in c programming language?