Skip to content

Instantly share code, notes, and snippets.

@m-primo
Last active April 25, 2020 14:49
Show Gist options
  • Save m-primo/56bed1cb0646144ef76a2eec49255ac3 to your computer and use it in GitHub Desktop.
Save m-primo/56bed1cb0646144ef76a2eec49255ac3 to your computer and use it in GitHub Desktop.
factorial in c
int factorial(int i) {
if(i <= 1) return 1;
return i * factorial(i - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment