Skip to content

Instantly share code, notes, and snippets.

@yhyacinth
Created September 10, 2013 07:16
Show Gist options
  • Save yhyacinth/6505994 to your computer and use it in GitHub Desktop.
Save yhyacinth/6505994 to your computer and use it in GitHub Desktop.
shortest factorial
f(a){return a-1?a*f(a-1):1;};main(){printf("%d",f(3));}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment