Hacker News new | ask | show | jobs
by wickberg 4936 days ago
I was working on the same lines, and managed to bump it up to a score of 106:

  #define P printf(
  main(n){(n%3?0:P"Fizz"))+(n%5?0:P"Buzz"))?:P"%d",n);P"\n");n>99?:main(n+1);}