A simple Tic Tac Toe game implemented in C++. This game allows two players to play Tic Tac Toe on a 3x3 grid, with the objective of getting three of their marks in a row, column, or diagonal.
- Two-player mode (player vs. player)
- Validations for moves and game progress
- Display of the game board after each move
- The game is played on a 3x3 grid.
- Players take turns to place their mark (X or O) on the grid.
- The player who places three of their marks in a row, column, or diagonal wins.
- The game ends if there is a winner or if the board is full (a draw).