Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Sepples

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."

Name: Anonymous 2014-12-22 0:09

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);
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List