Skip to content

chinmay4c/TicTacToe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TicTacToe

Welcome to the Tic-Tac-Toe Game! This project includes implementations of the game in Java, C, and JavaScript.

Play Online

You can play the Tic-Tac-Toe game online, created with JavaScript: Play Now

image

Java Version

To play the Tic-Tac-Toe game using Java, follow these steps:

  1. Clone the repository:

    git clone https://github.com/chinmay4c/TicTacToe.git
  2. Navigate to the Java version directory:

    cd TicTacToe/JAVA.Made
  3. Compile the Java program:

    javac TicTacToe.java
  4. Run the game:

    java TicTacToe

Screenshot from 2024-08-18 20-02-53

C Version

To play the Tic-Tac-Toe game using C, follow these steps:

  1. Clone the repository:

    git clone https://github.com/chinmay4c/TicTacToe.git
  2. Navigate to the C version directory:

    cd tictactoe/C.Made
  3. Compile the C program:

    gcc tictactoe.c -o tictactoe
  4. Run the game:

    ./tictactoe