What are advantages and disadvantages of recursive
calling ?

Answers were Sorted based on User's Feedback



What are advantages and disadvantages of recursive calling ?..

Answer / poonam yadav

by using this tag we call a function continuosly uptill
to specific condion

Is This Answer Correct ?    8 Yes 24 No

What are advantages and disadvantages of recursive calling ?..

Answer / deepak soni

the advantage of recursion is
1). by using this tag we call a function continuosly uptill
to specific condion

Is This Answer Correct ?    3 Yes 29 No

Post New Answer

More C Interview Questions

write a program to find out prime number using sieve case?

0 Answers   HCL,


I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.

1 Answers  


why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?

1 Answers  


How do you construct an increment statement or decrement statement in C?

0 Answers  


write a program to find lcm and hcf of two numbers??

1 Answers  






12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

4 Answers   Accenture,


Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com

0 Answers  


What is the purpose of void in c?

0 Answers  


how to display 2-D array elements in spiral

2 Answers  


int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?

4 Answers   TCS,


What are multibyte characters?

0 Answers  


What is the hardest programming language?

0 Answers  


Categories