Skip to content

Instantly share code, notes, and snippets.

@oppahero
Last active March 21, 2019 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oppahero/28bfbec309775d1a44b89de429d6feab to your computer and use it in GitHub Desktop.
Save oppahero/28bfbec309775d1a44b89de429d6feab to your computer and use it in GitHub Desktop.
int factorial (int n) {
if (n < 0) return 0;
else if(n > 1) return n*factorial(n-1);
  return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment