Define recursion and its limitations
Answers
Answered by
2
Recursion is a repetative process in which a function calls itself . Limitations of recursive solutions may involve extensive overhead because they use function calls. Each time you call a function you use up some of your memory allocation may be in stack or heap
srajika:
thanks to all
Similar questions