Skip to content

Instantly share code, notes, and snippets.

@brendanmckenzie
Created June 25, 2014 04:26
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 brendanmckenzie/aa409478389134bbf987 to your computer and use it in GitHub Desktop.
Save brendanmckenzie/aa409478389134bbf987 to your computer and use it in GitHub Desktop.
int main(){for(int i=1;i++<=100;){printf("%s%s",i%3==0?"Fizz":"",i%5==0?"Buzz":"");printf(!((i%5==0)||(i%3==0))?"%d":"",i);printf("\n");}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment