What should be keep precautions while using the recursion
method?
Answer Posted / harshal shah
Ans: 1)There should not be any uninitialized pointer.
2)Always allocated memory should be deallocate at
the end of recusion function or object.
3)Alwas declare one End point condition.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
What is s in c?
Write a program to generate the Fibinocci Series
What is the mean of function?
Explain what is a stream?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Is it fine to write void main () or main () in c?
hi send me sample aptitude papers of cts?
Explain what math functions are available for integers? For floating point?
What is the concatenation operator?
Why is c called c?
The difference between printf and fprintf is ?
In C language what is a 'dangling pointer'?
What is ponter?
What is the difference between array and structure in c?
What is wrong with this declaration?