In this part you will learn:
1. C syntax
2. Functions
3. Function Calling
4. Function definition
5. Function prototype
6. Recursive Functions
7. Showing output
What is Recursion?
Recursion is a process of repeating of items in a self-similar way. A recursive function is a function that calls itself and this technique is known as recursion in C programming. Recursion helps to make functions precise and easy.
Recursive FunctionBasic Step:
Open Dev C++ then File > new > source file and start writing the code below.
Add new comment