Program to find factorial of any number in C-language

#include<stdio.h>
int main()
{
    int x,f=1,i;
    printf("Enter the number\n");
    scanf("%d",&x);
    for(i=1;i<=x;i++)
    {
        f=f*i;
    }
    printf("Factorial of %d is=%d",x,f);
}

OUTPUT
Enter the number
5
Factorial of 5 is=120

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language