Tic Tac Toe is a puzzle grid game developed using C language.
_Tic Tac Toe is a puzzle game for two players, called "X" and "O", who take turns marking the spaces in a 3ร3 grid. The player who succeeded in placing three respective marks in a horizontal, vertical, or diagonal row wins the game.
โโโ Keywords:Functions
Procedures
srcs/
Where the artcode happens! Here is the .c file, the logo and the binary file.
This project requires GNU Compiler Collection, one terminal and the Internet to clone the reposiyoty.
โ๏ธ| Make sure you have all the required tools installed on your local machine then continue with these steps.
0. Download the archives and starting the game
# Clone the repository
$ git clone git@github.com:mewmewdevart/game-TicTacToe/.git
# Enter into the directory
$ cd game-TicTacToe/
# and run the binary file
$ ./srcs/gameTicTacToe
1. How to play
- The game was designed to be played in pairs. The first player to play is 'X' and the second player is 'O'. They put 'X' or 'O' in empty spaces on a 3x3 square grid.
- At each turn, a player will type in the terminal the position of the rows and columns that the player wants to fill!
- The first player to place 3 marks in a vertical, horizontal, or diagonal
5272
row wins the game. If all spaces are filled, the game ends in a draw.
Developed with love ๐ by Larissa Cristina Benedito (Mewmew/Larcrist).