- A virus
test banner

Post Top Ad

Responsive Ads Here
Share This

Source Code to Calculate Factorial Using Recursion

 
Program:- 
#include<stdio.h>
int factorial(int n);
int main()
{
    int n;
    printf("Enter an positive integer: ");
    scanf("%d",&n);
    printf("Factorial of %d = %ld", n, factorial(n));
    return 0;
}
int factorial(int n)
{
    if(n!=1)
     return n*factorial(n-1);
}
 
 
 
Output
Enter an positive integer: 8
Factorial of 8  = 40320

 

No comments:

Post a Comment

Post Bottom Ad

Responsive Ads Here

Pages