factorial program in c using function

Solutions on MaxInterview for factorial program in c using function by the best coders in the world

showing results for - "factorial program in c using function"
Aurore
02 Nov 2016
1#include<stdio.h>
2int main(){
3  int i,f=1,num;
4 
5  printf("Enter a number: ");
6  scanf("%d",&num);
7 
8  for(i=1;i<=num;i++)
9      f=f*i;
10 
11  printf("Factorial of %d is: %d",num,f);
12  return 0;
13}
Lucia
03 Jul 2016
1//Factorial of a given number
2#include <stdio.h>
3
4//This function returns factorial of the number passed to it 
5long int factorialOf(int number){
6    long int factorial = 1;
7    while(number){
8        factorial*=number;
9        number-=1;
10    }
11    return factorial;
12}
13
14int main(void) {
15	int n;
16	printf("Find factorial of \n");
17	scanf("%d",&n);
18	printf("\nThe factorial of %d is %ld",n,factorialOf(n));
19	return 0;
20}
Felicity
05 Jan 2020
1#include <stdio.h>
2 
3int fact(int);
4 
5void main()
6{
7 int no,factorial;
8 
9  	printf("Enter a number to calculate it's factorial\n");
10  	scanf("%d",&no);
11  	factorial=fact(no);
12    printf("Factorial of the num(%d) = %d\n",no,factorial);
13//printf("Factorial of the num(%d) = %d\n",no,fact(no));//another way of calling a function//comment above two lines if you want to use this
14}
15 
16int fact(int n)
17{
18    int i,f=1;
19    for(i=1;i<=n;i++)
20    {
21        f=f*i;
22    }
23    return f;
24}
25
Emilie
09 Sep 2018
1#include <stdio.h>
2
3int fact (num1);
4
5void main ()
6{
7    int num,ret;
8    
9    printf ("Enter the number: ");
10    scanf("%d",&num);
11
12    ret = fact(num);
13
14    printf("\nthe factorial of %d is %d\n",num,ret);
15
16}
17
18int fact(num1)
19{
20    int i, f=1;
21
22    for(i=1; i<=num1; i++)
23    {
24        f = f * i;
25    }
26
27    return f;
28}
29
queries leading to this page
factorial cfactorial programc program to find factorial of a number using functionc program to find factorial of the given numberwrite a function in c that will find the factorial of a given number 4 write a c program to calculate factorial of a number 3fwrite a c program to calculate the factorial of a numberwrite factorial in ccalculate many factorials numbers in cfactorial formula in cprogram for factorialcode to get factorial of a number in cfactorial number in cc program to find factorial of a number using iterationprogram to find a factorial of a numberdigital factorial in cc factorial codec program to find factorial of a number using iliarationfactorial of n numbers in cfactorial built in cc program for factorial of a large number how to calculate factorial in cfactorial of a no cc program factorial of given numberwrite a program to compute factorial of an integer entered by the userfactorial using iteration in cprogram for factorial of a number in cfactorial for n numbers in cfactorial of a number c program geeksfinding factorial in c using functions5 factorial in chow to find factorial in cc programming language factorialfactors of a number in cc program to find factorialprogram to display factorial of a given numberfactorial program in c using for loopfactorial function cfiactorial program in c program to find factors of a number in cfacrorial in c programmingfactorial nuumber program in cfactorial of number in cfactorial in c using while loopfactorial func in chow to factorial in cfeactorial in cfactorial sum program in cc program to compute factorial of a numberfactorial function c codeusing factorial of using c using factorial equationfactorial with for loop cfactorial of a number c programfactorial finding function using cc program that calculates the factorial of a numberc code for factorial using for looplong factorial in ccalculate factorial loop numbers in cc program to calculate the factorial of a numberfactorial in c using whilehow to find factorial of a number in c using functionfactorial number cfactorial ccode function to get factorial of a number in cfactorail in chow to use factorial in c programmingc program factorialwrite a c program to find all factor of a number 3fhow to do factorial in c prgramminga c program to calculate factorial of a number factorial of number using pointer in cfactoraial in cc calc the faculty of numberscreat a c program to find factorial numberc factorial funtionsc factorial functionfactorial type for cc programme to find the factorial of given numberfactorial calculator in cfactorial using recurino in cfactorial of a number c programmingfactorial c codefactorial program in c using factorial ftn in ccalculate n e2 80 93factorial in cfactorial of a numbe rusing functions in cfactorial meaning in cwrite a c program to calculate factorial of a numberprogram to find factorial of a number in cfactorial math in cwrite a program to find factorial of a numberfactorial program in c by using functionfactorial of number using fuction in cwrite a c program to calculate factorial of a number using the function factorial of a number using cmath library c factorialc program to find the factorial of a numberprogram calculates the factorial of any entered number using while loop in cfactorial of a number c 2b 2b 3bfind out factorial of given number in cto find the factorial of a given number in loops in ctill which number does factorial support in cwrite a c program to find factorial of number using functionsimple c program for finding factorial of a numberwrite a c program to find a factorial using functionsfactorial program in c using do while loopfactorial using for loop cfactorial built in function in cwrite a c program to display the factorial of a given number 2c nc program factorial of a numberc program to calculate the factorial in a given equationc program for factorial of a given numbercalculate factorial in cfactorial of a number using while loop cfinding factorial in cwrite a c program to find the factorial of a number and also find the value of ncr using this function c program for factorial of a numberc program to calculate the factorial of a given number nhow to print factorial in cfactorial of a given examples in cc program to calculate the factorial of a given number ncalculate the factorial of a number in cwrite a factorial program in cc program for factorial using while loopfactorial sample programc factorial program algorithmfactorial of a number using for loop in cc program to calculate factorial of a numberfactorial programiz cc program to find and print factorial of a number using functionwrite a c program to find factorial of a numbera c code to show the factorial of a numbercalculate factorial with cprogram to print factorial of a number in cdevelop c program to find the factorial of a numberprogram to find factorial of a numberto find the factorial of a given number in loop in cwrite a program in c to calculate factorial of a user given number wap to calculate the factorial of a given numberfactorial functuion in chow to make a for loop in c to calculate the factorial of a number write factorial program in c 23 3ffactorial of a number using for loopprogram to find the factorial of a numberfactorial function in cfactorial in in ccode for factorial in cwrite a program in c that takes a variable n from user and calculates the factorial of n using for loopc program for a factorial of a numberhow to write a factorial function in cwrite a c program to calculate the factorial of a given number factorial in c programmingformula for factorial in c with loophow to find the factorial of a number in cwrite a c program to find factorial of number using write a program to find the factorial of a numberfactorial pattern in cwrite a program in c to find out the factorial value of n using functionfactorial of a number in c programwrite a c program to calculate the factorial of a given numberfactorial of a numberprogramar factorial en cwrite a c program to find factorial of given positive numberfactorial program in cfactorial in cfind factorial of a number in cfactorial c functionwap to print the factorial of a number 28using for loop 29small factorial program in cfactorial prgm in cto calculate factorial of a number in cprogram for factorial in ccalculate factorial of 10 numbers in cfactor code in cformule for factorial in cfactorial of laze number in cwrite a program for factorial of a numberwrite a c program to find factorial of the given number nfacotial in cwrite a c program to find factorial of a given integerhow to find a factorial in c programmingfactorial function in cfactor chow to find factorial c programc program to find factorial of numberformula for factorial in cinteractive factorial orgramfactorial of a given number in cc program to print factorial of a number from 1 to 20creat a c program to finde factorial numberprogram to calculate factorial of a number in ccompute factorial in cexplain factorial program in cfactorial for loopfind the factorial of a number in cprogram a factorialfactorooal logicfactoril logicfind factorial of n c 23sum of factorial series in cfind the factorial of a number using for loop in cwhy is my factorial program not working in cfactorial of a number in c using do while loophow to calculate factorial in c programwrite a program to calculate factorial of a number how does factorial work in cprogram to find 2 factors of a number in cprogram to calculate factorial of a numberwrite a function which will use a for loop to compute the factorial of nfactorials in cfind the factorial of a natural number e2 80 98n e2 80 99 in cinf in c factorialfinding factorial clarge number factorial using cc program to calculate factorial using functionfactorial of number programmaking factorial in c programmingc programming factorial functionfactorial in c using functionhow to get factorial of a number in cfactorial using for loopwrite a c program to calculate factorialwrite a c program to find the factorial of a number using while loopcalculator the factorial with given function in cfactorial codehow to do a factorial in cfactorial of a number cwap to find the factorial of a given numberc factorial programcalculate factorial of a number in cprint n factorialfactorial en cwap to fctorial of numberfactor finding cmy factorial c languagewhat is the code for farctorialinc programfactorial of 2 numbers in cfactorial of a number in c using while loopc program to find factorial of a number formula of factorial in cc code factorial functionc programm to print 10 factorialwrite a c program to calculate factorial of a number 3fc program to print factorial of a number using while loopc program to find a factorial of a number using for loop 5bhow to find the factors of a number in ccalculate factorial in c using functionwhat is factorial c 3a function for factorial cfactorial of individual digits in cwrite a program to find thefactorial c while loopfactorial of two numbers program in ci 2ffactorial in cfactorial number program in cfactorial in c using for loopc program to execute factorial write a c program to calculate the factorial of a given numberc program to find factorial of a numberwhat is factorial cfactorial c program using for loopfactorial with a for loop in c factorial program in c using iterationfind a factorial of a given no in cfactorial simple program in cc programming factorialtypes of factrorial program in chow to calculate factorial of a number in csimple logic for factorialhow to return a factorial in cwrite a program to find out the factorial of a given numberwap to print factorial of a numberfactorial value of any number in chow to factoriel in cfactorial logicfactroical in cfactorial functin in cwap ic find factorialfactorial program using function in cc program for factorial of n numbersfactorial operator in cfactorial of a number in cfactorial of a number in c whilewrite a program to find the factorial of the given number n how to factorize a number in cwrite a program to find out the factorial of a numberc language factorial functionc program to print factorial of a numberfind a factorial of a number in cc calculate factorialfactorisation in ccalculate the factorial of a given number 28given number prompt by the user 29inbuilt factorial function in cwrite c program for factorrlalbuilt in factorial in cc factorial for loopprogram to find factorial of a 3 digit numberfactorielle in cfind a factorial of a given no in c using for loopfactorial of n using functio in cc factorenter an integer and the factorial of in c programmingfind factorial in c languagenumber is factorial in cfactorial of a number in c languagecheck factorial number in cfactors of a given number in cwrite a program in c to find the factorial of a given number 3fc programming wap factorialgetting a factorial in cprint the factorial of a given number in cfactorila in cc code for factorialfactorial of a number using iteration in cfind the factorial of n program in cis there a factorial function in cfactorial using function in cfactorial program in c using functionwrite a c program to find the factorial of a number and count the total number of itteration how to factorial a number in cfactoril code in cget factorial in cto find factorial of a number in cfacrorila function in cfactorial algorithm in cfactorial function program in cfactorial code in ccos using factorial cfactorial operator in c find the factorial of a number cwrite a program in c to display factorial of any given number factorial of numberfactorial numbers logicwho to do factorial in cfactorial problem in cwrite a c program to find the factorial of a given numberc program for factorialfactorial using cwrite a program to print the factorial of a number in c and check if the last digit of the number contains 2 or not print a proper message accordingly c factorialwrite a program to find factorial of numberwrite a c program to find the factorial of a given number factorial using while loop in ccode for factorialfactorial in c with functionfactorial logic in cfactorial math code in chow to find factorial a number in cfactorial example in c programmingfind factor of two number in ccompute n factorial in ccreate a c program to find factorial of numbern factorial formula in chow to do factorial in cfactorial c programfactorial of number cfactorial condition in cc program to display for a factorial of a numberfind factorial of a number in c using do while loophow to find factorial of a number in cfactoriual in cfactorial of cfactorial in cconditions for factorial in cfactorial code cc factorial program by forloophow find factorial works in chow to write a c program that return a factorial of given numberwrite a c program that reads an integer n from the keyboard and prints out the factorial of n factorial of a number ij cfactorial in c using while loop geeksforgeeksfactorial program in c using function