Question:

How to make tic tac toe game using c programming language with arrays?

by  |  earlier

0 LIKES UnLike

How to make tic tac toe game using c programming language with arrays?

 Tags:

   Report

1 ANSWERS


  1. You'd define a 3x3 array of integers, all values start out at 0 (0=empty space), when someone puts an X in a space, put a 1 in that spot in the array, for an O put a 2. Don't change anything that isn't zero. At the end of every turn, check for all possible wining conditions for both sides.

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.