Calculate Factorial of a given no with help of Recursion

 


#include<stdio.h>

#include<conio.h>

int fact(int);

int main()

{

    int x,n;

    printf(" Enter the Number to Find Factorial :");

    scanf("%d",&n);

 

    x=fact(n);

    printf(" Factorial of %d is %d",n,x);

 

    return 0;

}

int fact(int n)

{

    if(n==0)

        return(1);

    return(n*fact(n-1));

}


Output:-

Enter the Number to Find Factorial :3

 Factorial of 3 is 6


Comments

Popular posts from this blog

Check whether the no entered is Palindrome or not

Find max. and min. element in the integer array