Question: c++ Iic-1ac-Toe Game Write a program that allows two players to play a game of tic-tac-toe. Use a twodimensional char array with three rows and
Iic-1ac-Toe Game Write a program that allows two players to play a game of tic-tac-toe. Use a twodimensional char array with three rows and three columns as the game board. Each element of the array should be initialized with an asterisk (). The program should run a loop that - Displays the contents of the board array - Allows player 1 to select a location on the board for an X. The program should ask the user to enter the row and column number. - Allows player 2 to select a location on the board for an O. The program should ask the user to enter the row and column number. - Determines whether a player has won, or a tie has occurred. If a player has won, the program should declare that player the winner and end. If a tie has occurred, the program should say so and end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
