Simple Tic-Tac-Toe game implemented in c
Follow these steps to set up and run the Tic-Tac-Toe game:
-
Clone the Repository
Open your terminal and run:git clone git@github.com:3Tamao3/Tic-Tac-Toe.git
cd Tic-Tac-Toe/
-
Compile the Code
Use a C compiler (e.g., GCC) to compile the program:gcc -o tic_tac_toe main.c
-
Run the Program
Execute the compiled program:./tic_tac_toe
-
Play the Game
Follow the on-screen instructions to enjoy the game!
Note: Ensure you have a C compiler installed on your system. For Linux users, you can install GCC by running sudo apt install gcc
. On Windows, you can use tools like MinGW or WSL.