What are advantages and disadvantages of recursive
calling ?
Answer Posted / nishu
disadvantage:
Recursive procedures are huge memory hogs. Also, they're a
nightmare to debug. Finally, it's pretty rare to find an
application that actually needs recursion as opposed to a
simpler, more friendly methodolgy.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What does != Mean in c?
How are portions of a program disabled in demo versions?
Differentiate between a for loop and a while loop? What are it uses?
Explain what is a 'locale'?
What is %s and %d in c?
How can I copy just a portion of a string?
What are keywords c?
What are the modifiers available in c programming language?
With the help of using classes, write a program to add two numbers.
Is a pointer a kind of array?
What is #define size in c?
Which of these functions is safer to use : fgets(), gets()? Why?
What is a scope resolution operator in c?
what is the basis for selection of arrays or pointers as data structure in a program
explain what are pointers?