Write a program to find the factorial of the given number

Source Code

#include<stdio.h>
#include<conio.h>
int main (int argc, char *argv[])
{
  clrscr();
  int n=0,i=0,f=1;
  printf("\n Enter the number:");
  scanf("%d",&n);
  printf("\n The factorial of %d is:",n);
  for(i=1;i<=n;i++)
  {
       f*=i;
  }
  printf("%d",f);
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code