Skip to content

Files

Latest commit

 

History

History

(4) Recursive Functions

Recursion Programs

Programs based on concept of recursion


Recursion :

recursion is a method of solving a computational problem where the solution depends on solutions to smaller instances of the same problem. Recursion solves such recursive problems by using functions that call themselves from within their own code