<p>The Code is C++</p><p>// tic tac toe game<br/>#include <iostream></p><p>using namespace std;</p><p>const int SIZE = 9;</p><p>int check(char *);<br/>void displayBoard(char *);<br/>void initBoard(char *);</p><p>int main() {<br/> char board[SIZE];<br/> int player, choice, win, count;<br/>