Chat with our AI personalities
kjhk
int factorial(int n) { int i; int f=1; for(i=2;i<=n;++i) f*=i; return f; }
factorial of -1
Factorial 6 = 720
/*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); }