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


Please Help Members By Posting Answers For Below Questions

What are the storage classes in C?

606


Compare interpreters and compilers.

619


why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

587


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

665


What does == mean in texting?

639






How do I copy files?

593


What are the advantages and disadvantages of pointers?

553


Explain how are 16- and 32-bit numbers stored?

756


What does typedef struct mean?

625


Explain why C language is procedural?

746


Why c is called a middle level language?

612


what is ur strangth & weekness

1784


What is array of structure in c?

567


4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.

1700


Can a local variable be volatile in c?

552