// board.cpp - Print out a checkered board of size n // (the normal chess board is of size 8) // The board will be given a margin consisting of a single '*' #include const int cellSize = 4; // The number of columns in a single board cell // Print n copies of character c void printnc(char c, int n){ for(int k = 0; k> n; printBoard(n); }