Skip to content

Instantly share code, notes, and snippets.

@cubapp
Created August 28, 2017 09:00
Show Gist options
  • Save cubapp/14fa418588b659f7eff521e4f96d6254 to your computer and use it in GitHub Desktop.
Save cubapp/14fa418588b659f7eff521e4f96d6254 to your computer and use it in GitHub Desktop.
The FizzBuzz.c the ugly way ...
#include <stdio.h>
void main(void){for(int i=0; i<=99; (++i%15)?(i%5)?(i%3)?printf("%d\n",i):printf("Fizz\n"):printf("Buzz\n"):printf("FizzBuzz\n"));}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment