What are advantages and disadvantages of recursive
calling ?
Answer Posted / swapna
advantages ;
recursive functions can be effectively used to solve
problems where the solution is expressed in terms of
applying the same solution.
disadvantages ;
in recursive we must have an if statement somewhere to
force the func. to return without the recursive call being
executed.otherwise the funct. will never return.
| Is This Answer Correct ? | 22 Yes | 36 No |
Post New Answer View All Answers
How does struct work in c?
what are bit fields in c?
What are global variables?
What should malloc(0) do?
Can you assign a different address to an array tag?
What do you understand by normalization of pointers?
What is console in c language?
What are the modifiers available in c programming language?
What are the three constants used in c?
What does nil mean in c?
Can true be a variable name in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
The difference between printf and fprintf is ?
What is #include cctype?
What is c definition?