Vision and dreams are the blueprints of soul and achievements.
-Mohammed Ahmed F

Factorial

  #include <stdio.h> 
  #include <conio.h> 
  long int factorial(int n); 
  void main() 
  { 
     int n; 
     clrscr(); 
     printf("Enter the number:\n"); 
     scanf("%d",&n); 
     printf("Factorial of %d is %ld",n,factorial(n)); 
     getch(); 
  } 
  long int factorial(int n) 
  { 
     if(n<=1) 
     { 
        return(01); 
     } 
     else 
     { 
        n=n*factorial(n-1); 
        return(n); 
     } 
  }

Share this

Related Posts

Dear User,

Thank you for your comment. Hope you like this blog. Kindly share us on Social Media so others can be updated.

-Chief Administrative Officer.

Note: only a member of this blog may post a comment.