Programming

C Program to Calculate Factorial Using Function

This is C Program and shows how can you calculate Factorial using Function.

A user here will enter the number and calculate the factorial using Function. Here are more examples that you can check on factorial.

Source Code

#include<stdio.h>
#include<conio.h>
long int factorial(int);
void main()
{
int n;
long int fact;
printf("Enter number:");
scanf("%d",&n);
fact=factorial(n);
printf("Factorial number of %d=%ld",fact);
getch();
}
long int factorial(int n)
{
long int fact=1;
for(i=1; i<n; i++)
fact=fact*i;
return fact;
}

Tuts

About Author

Tutsmaster.org provides tutorials related to tech and programmings. We are also setting up a community for the users and students.