Tic Tac Toe
Tic Tac Toe is a simple version of the classic game. It was coded in C++ and employs a 2D array as the board. The win condition is checked via the 8 possible wins in Tic Tac Toe, including the three columns, three rows, and two diagonals.






Back to Top