Featured
-
No Featured Found!
Tags
Program for factorial of a number using recursive function in C
What is Factorial ?
Factorial of a no. means multiplying below numbers. Factorial is denoted by ! Exclamation mark
Eg:- 5! means :- 5 * 4 * 3 * 2 * 1 = 120
What is a Recursive function?
Definition:- A function which calls itself is...
Recursion in c
In C programming language when a function calls itself over and over again , that function is called recursive function .The process of function calling itself repeatedly is known as recursion .
Recursion is supported by C programming languag...