/* Turbo C version of 99 Bottles of beer (Bottles.c) */ /* Philipp Winterberg, http://www.philipp-winterberg.de */ #include int b; main() { for (b = 99; b > 0; b--) printf("%d bottle(s) of beer on the wall,\n%d %s\n%s\n%d %s", b, b, "bottle(s) of beer.", "Take one down, pass it around,", (b-1), "bottle(s) of beer on the wall.\n\n"); }