#include<stdio.h>
int main()
{
    int num , i , fact = 1;

    printf(" Enter the number : ");
    scanf(" %d ", &num);

    for(i = 1 ; i<=num ; i++)
    {
        fact = fact * i;
    }
    printf(" The factorial of %d is : %d ", num , fact);
    return 0;
}



OUTPUT :

Enter the number : 5
The factorial of 5 is : 120


For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/