what are the advantage and disadvantage of recursion
Answer Posted / suman boddukuru
Advantage : Perform an action untill a condition
satisfies,Also for the repetative calls for inputting and
etc.
Disadvantage: If it encounters the infinite looping then
the stack overflow occurs it will cause ssem crash...
| Is This Answer Correct ? | 32 Yes | 8 No |
Post New Answer View All Answers
Where are some collections of useful code fragments and examples?
while initialization of array why we use a[][2] why not a[2][]...?
What are the two forms of #include directive?
Is null valid for pointers to functions?
Explain void pointer?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What are the c keywords?
What are structure members?
Why is it usually a bad idea to use gets()? Suggest a workaround.
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is return in c programming?
Do character constants represent numerical values?
Whats s or c mean?
What are the advantages of union?