Name: Anonymous 2014-12-20 10:36
"I was a C++ programmer before I started designing Ruby. I programmed in C++ exclusively for two or three years. And after two years of C++ programming, it still surprises me."
Keywords in C
i;
fizzbuzz(n) {
(i % 3 == 0) &&
printf("Fizz");
(i % 5 == 0) &&
printf("Buzz");
((i % 3) && (i % 5)) &&
printf("%d", i);
printf("\n");
++i;
(i <= n) &&
fizzbuzz(n);
}
main() {
i = 1;
fizzbuzz(100);
}