08/01/2017

C Program To Calculate Factorial Of A Given Number

Problem :- Write A C Program To Calculate Factorial Of A Given Number .

What Is Factorial :- In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. For example,

5!=5*4*3*2*1=120.

The value of 0! is 1, according to the convention for an empty product*

The factorial operation is encountered in many areas of mathematics, notably in combinatorics, algebra, and mathematical analysis. Its most basic occurrence is the fact that there are n! ways to arrange n distinct objects into a sequence (i.e., permutations of the set of objects). This fact was known at least as early as the 12th century, to Indian scholars .
source :- Wikipedia

See Also :- C++ Program To Calculate Factorial Of A Given Number 

Solution :-

Method 1 :- Factorial Using For Loop

#include<stdio.h>

int main()
{
/*Program By Ghanendra Yadav
    Visit http://www.programmingwithbasics.com/
    */
 
unsigned long long int fact=1;
  int i,num;
 
printf("Enter The Number. You Want Factorial  :");
  scanf("%d",&num);
 
for(i=1;i<=num;i++)
    {
        fact=fact*i;
    }
    
printf("\nFactorial is = %llu\n",fact);
    return 0;

}



Output :-

C Program To Calculate Factorial Of A Given Number

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: