Question: Using C Programming and #include Question 5 Write a Tic-Tac-Toe game in C which allows two players to alternately enter 'X' or 'O' into a

Using C Programming and #include
Question 5 Write a Tic-Tac-Toe game in C which allows two players to alternately enter 'X' or 'O' into a two- dimensional array. Print the array after each player's move until a player wins. Player 1 >> 0,0 Player 2 >> 1,1 Player 1 >> 0,2 : : Player 1 wins ! 0 1 2 0 1 2 0 1 2 0 0 0 X 1 1 1 o 2 2 2 Bonus Track (+10 Marks) Modify your C program in Question 5 to make a 3D Tic-Tac-Toe game. Tip: You need to use a 3x3x3 character array
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
