Skip to content

Instantly share code, notes, and snippets.

@nna774
Created October 23, 2014 16:35
Show Gist options
  • Save nna774/f2e8cb461c0908e370d2 to your computer and use it in GitHub Desktop.
Save nna774/f2e8cb461c0908e370d2 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int fact(int n){
if(n == 0) return 1;
return n * fact(n-1);
}
int main(){
int n = 0;
scanf("%d", &n);
printf("%d! = %d", n, fact(n));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment