Skip to content

Instantly share code, notes, and snippets.

@monmonmon
Created January 25, 2016 03:24
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 monmonmon/9f5624afe63742bd5909 to your computer and use it in GitHub Desktop.
Save monmonmon/9f5624afe63742bd5909 to your computer and use it in GitHub Desktop.
short coding fizzbuzz
main(i){for(;;)printf(i%15?i%5?i%3?"%d\n":"Fizz\n":"Buzz\n":"FizzBuzz\n",i++);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment