https://github.com/davealdon/big-tic-tac-toe
A large game board version of tic tac toe written in C to utilize several AI techniques
https://github.com/davealdon/big-tic-tac-toe
Last synced: about 1 year ago
JSON representation
A large game board version of tic tac toe written in C to utilize several AI techniques
- Host: GitHub
- URL: https://github.com/davealdon/big-tic-tac-toe
- Owner: DaveAldon
- Created: 2016-08-24T04:00:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-10T03:44:13.000Z (over 9 years ago)
- Last Synced: 2025-03-29T04:07:04.689Z (about 1 year ago)
- Language: C
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Big-Tic-Tac-Toe
A large game board version of Tic Tac Toe written in C to utilize several AI techniques.
This application is my first dive into the C programming language, and will help me learn both the minimax AI programming methodology and the syntax/logic of C. Also, instead of creating an ordinary Tic Tac Toe game, it is a 5X5 version with tweaked rules in order to keep the game interesting as well as a little more challenging for the computer to process in terms of move decision making.
While this program is simple to compile in a UNIX terminal, I will continue to upload the compiled application as well as the source code.
To compile in a UNIX terminal:
cd to the source code's folder and use the following command: "gcc main.c -o tictactoe"
And finally use this command to run the compiled code: "./tictactoe"