An implementation of tic-tac-toe in C, featuring an AI powered by the negamax algorithm.
This program operates entirely in the terminal environment. Below is its appearance as it awaits your next move:
1 | ×
2 | ○
3 |
---+----------
A B C
>
To execute a move, enter [column][row]
. For example:
> a3
Press Ctrl-C to exit.
- Mastering Tic-Tac-Toe with Minimax Algorithm in Python
- tic-tac-toe: tic-tac-toe game for terminal I/O.