C/C++
cprog.asc
Associated article: C Programming
Tags: C/C++
_C PROGRAMMING COLUMN_ by Al Stevens Listing One /* ------------------------------ ttt.cmm -------------------------- */ /* A simple game of tic-tac-toe written in Cmm */ /* ------------------------------------------------------------------*/ #define TRUE 1 #define FALSE 0 #define BELL 7 /* ---- board markers ---- */ #define PLAYER 'X' #define COMPUTER 'O' #define FREE ' ...


