Factorial Program in C

Advertisements

Calculator Program in C Print Table Program in C

Find Factorial of Number Program in C

Factorial of any number is the product of an integer and all the integers below it.For example factorial of 4 is
4! = 4 * 3 * 2 * 1 = 24

factorial program in c

Factorial of a given number using for loop

Factorial of Number Program in C

#include<stdio.h>
#include<conio.h>

void main()
{
int i, no, fact=1;
clrscr();
printf("Enter the any no. : ");
scanf("%d",&no);
for(i=1;i<=no;i++)
{
fact=fact*i;
}
printf("Factorial =%d ",fact);
getch();
}

Output

Enter the any no. : 4
Factorial = 24

Factorial of a Given Number using Do-While Loop

program factorial of number

#include<stdio.h>
#include<conio.h>

void main()
{
long n, i, fact=1;
clrscr();
printf("Enter any number = ");
scanf("%ld",&n);
i=n;
if(n>=0)
{
do
{
fact=fact*i;
i--;
}
while(i>0);
printf("\nFactorial = %ld",fact);
}
else
{
printf("fact on -ve no is not possible");
}
getch();
}

Output

Enter the any no. : 5
Factorial = 120

Factorial of number using recursion

The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called as recursive function. Here we write a factorial program using recurtion.

factorial of a number using recursion in c

program factorial of number

#include<stdio.h>
#include<conio.h>

void main()
{
int fact(int);
int f, n;
clrscr();
printf("ENTER ANY NUMBER = ");
scanf("%d",&n);
f=fact(n);
printf("\n\nFACTORIAL OF %d IS = %d",n,f);
getch();
}
int fact(int a)
{
if(a==1)
return(1);
else
{
return(a*fact(a-1));
}
}

Output

Enter the any no. : 6
Factorial = 720

Calculator Program in C Print Table Program in C

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements