Skip to content

Instantly share code, notes, and snippets.

@zaltoprofen
Created October 29, 2014 10:17
Show Gist options
  • Save zaltoprofen/3377f81d839b6164fc72 to your computer and use it in GitHub Desktop.
Save zaltoprofen/3377f81d839b6164fc72 to your computer and use it in GitHub Desktop.
#include <stdio.h>
i = 1;
main()
{
(i % 3 || printf("fizz")) &&
(i % 5 || printf("buzz")) &&
(!(i % 3 && i % 5) || printf("%d", i)) &&
printf("\n") &&
(++i > 100 || main());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment