Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int fact (int n)
- {
- if (n==0||n==1)
- {
- return 1;
- }
- else
- {
- return (n*fact(n-1));
- }
- }
- int main(void)
- {
- int n;
- printf("Enter the Number to find its factorial \n");
- scanf("%d",&n);
- printf("The Factorial is %d \n",fact(n));
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment