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
How is pointer initialized in c?
What is a macro, and explain how do you use it?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is selection sort in c?
What is wrong with this program statement?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is the return type of sizeof?
Do you know null pointer?
What is keyword in c?
Differentiate between the = symbol and == symbol?
Why should I use standard library functions instead of writing my own?
Why is c called "mother" language?
Where can I get an ansi-compatible lint?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is else if ladder?