Answers for "program to find factorial of a number"

C
3

factorial of a given number in c

//Factorial of a given number
#include <stdio.h>

//This function returns factorial of the number passed to it 
long int factorialOf(int number){
    long int factorial = 1;
    while(number){
        factorial*=number;
        number-=1;
    }
    return factorial;
}

int main(void) {
	int n;
	printf("Find factorial of n");
	scanf("%d",&n);
	printf("nThe factorial of %d is %ld",n,factorialOf(n));
	return 0;
}
Posted by: Guest on June-15-2020
0

program to calculate factorial of a number

#include<stdio.h>  
int main()    
{    
 int i,fact=1,number;    
 printf("Enter a number: ");    
  scanf("%d",&number);    
    for(i=1;i<=number;i++){    
      fact=fact*i;    
  }    
  printf("Factorial of %d is: %d",number,fact);    
return 0;  
}
Posted by: Guest on October-31-2021

Code answers related to "program to find factorial of a number"

Code answers related to "C"

Browse Popular Code Answers by Language