Skip to content

Instantly share code, notes, and snippets.

@copyninja
Created September 25, 2010 13:57
Show Gist options
  • Save copyninja/596858 to your computer and use it in GitHub Desktop.
Save copyninja/596858 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int _fact(int n){
if(n <= 1)
return 1;
return n*_fact(n-1);
}
@copyninja
Copy link
Author

Its corrected now. Thanks for pointing out :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment