Skip to content

Instantly share code, notes, and snippets.

@eventhelix
Created December 22, 2018 20:26
Show Gist options
  • Save eventhelix/18c7bd482abd1a46bc1196e3794a3cf4 to your computer and use it in GitHub Desktop.
Save eventhelix/18c7bd482abd1a46bc1196e3794a3cf4 to your computer and use it in GitHub Desktop.
unsigned int factorial(unsigned int n)
{
// Recursion termination condition
if (n == 0)
{
return 1;
}
return n*factorial(n-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment