Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int fact(int n)
- {
- if(n == 0){
- return 1;
- }
- return fact(n - 1) * n;
- }
- int main()
- {
- printf("%d\n", fact(9));
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement