Skip to content

Instantly share code, notes, and snippets.

@monmonmon
Created January 25, 2016 03:24
Embed
What would you like to do?
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