Factorials are the product of 1 and all the integers up to the given number.
Simply put,
5 factorial or 5! = 5*4*3*2*1
Chat with our AI personalities
i need a pic of cuson
Kat
#define fact(n) ( n == 0 ? 1 ; (n*(fact(n-1) ) ) )
kjhk
/*program to find the factorial of a given number*/ #include<stdio.h> #include<conio.h> int fact(int); void main() { int n,c; printf("\n enter the number for which you want to find the factorial"); scanf("%d",&n); c=fact(n); printf("\n the factorial of the number %d is %d",n,fact); getch(); } int fact(int n) { int k; if(n==0) return(1); else k=n*fact(n-1); return(k); }