A simple command-line Tic Tac Toe game built using C.
This project focuses on basic programming concepts like loops, conditionals, and arrays.
- Two-player gameplay (X vs O)
- Win detection (rows, columns, diagonals)
- Draw detection
- Turn-based system
- Console-based interface
- Language: C
- Compiler: GCC
- Platform: CLI
-
Grid: 3×3
-
Players: X and O
-
Input: positions 1–9
-
Turns: alternate each move
-
Win: 3 marks in a row (row, column, diagonal)
-
Draw: all cells filled with no winner
-
Mode: single-player (AI)
-
Levels: easy, medium, hard
-
UI: improved terminal display
-
Score: track wins/losses
-
Input: validation for invalid moves