what is the importance of base condition in recursion
Answers
Answered by
1
A recursive function is the function that calls itself until a base condition is true
In the recursive program the solution is to base case provided and the solution of the bigger problem is expressed in terms of smaller problem.
In the recursive program the solution is to base case provided and the solution of the bigger problem is expressed in terms of smaller problem.
Similar questions