Skip to content

Instantly share code, notes, and snippets.

@alonecuzzo
Last active December 29, 2015 20:38
Show Gist options
  • Save alonecuzzo/7724681 to your computer and use it in GitHub Desktop.
Save alonecuzzo/7724681 to your computer and use it in GitHub Desktop.
fact(i)
{
if(i > 1)
return i*fact(i-1);
else
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment