Compile and Run "Windows"
- Make sure MinGW (g++) is installed.
- Open Command Prompt in the project folder.
- Compile: g++ tictactoe.cpp -o tictactoe
- Run: tictactoe.exe Note: Replace system("clear") with system("cls") for Windows.
"macOS / Linux"
- Open Terminal in the project folder.
- Compile: g++ tictactoe.cpp -o tictactoe or clang++ tictactoe.cpp -o tictactoe
- Run: ./tictactoe