What are advantages and disadvantages of recursive
calling ?
Answer Posted / santhi
advantage:using recursion we can avoid unnecessary calling
of functions.
disadvantage:by too many recursive functions there may be
confusion in the code.
| Is This Answer Correct ? | 134 Yes | 53 No |
Post New Answer View All Answers
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What are the application of void data type in c?
What does %p mean c?
What is character set?
Why functions are used in c?
Explain what does it mean when a pointer is used in an if statement?
When should you not use a type cast?
Is it possible to execute code even after the program exits the main() function?
diff between exptected result and requirement?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Write the syntax and purpose of a switch statement in C.
What are bitwise shift operators in c programming?
What is the difference between the local variable and global variable in c?
What is a 'null pointer assignment' error?