#include #define NROWS 6 #define NCOLS 7 // right now this just prints out the characters in the array, // but you could also decorate them with additional characters // to make a grid like this: // // +---+---+---+---+ // | X | O | | | // +---+---+---+---+ // // etc. void print_board(char board[NROWS][NCOLS]) { int i, j; for (i=0; i