C program to find factorial using function and recursion
C program to find factorial using function and recursion :
In this program, we will read a number and then find (calculate) of factorial of that number using recursion.
For example (Factorial of 5) is: !5 = 5*4*3*2*1 = 120
!5 thats means 5* !5-1
or !5 = 5*!4
Example :
Input : Enter the number 5
Output : factorial = 120

No comments