/* Turbo C version of 99 Bottles of beer (Bottles.c) */ /* See http://community.borland.com/article/0,1410,20841,00.html */ /* Philipp Winterberg, http://www.winterbergs.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"); }