Showing posts with label calculate factorial. Show all posts
Showing posts with label calculate factorial. Show all posts

Wednesday, November 10, 2010

C Program to calculate factorial of given number

You write this code into any c compiler and get factorial of given number by run this code.

C Program Code
//factorial of a number
#include "stdio.h"
#include "conio.h"
void main()
{
int fact=1,n;
clrscr();
printf("enter any number");
scanf("%d",&n);
while(n>0)
{
fact=fact*n;
n--;
}
printf("\n factorial of given number= %d",fact);
getch();
}




Input/Output
enter any number 4
factorial of given number= 24


Factorial of 4 = 4*3*2*1 =24