Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

T-T-T Requirement: - write one program that uses two dimensional array to allow two players to play tic-tac-toe. The program asks for moves alternately from

T-T-T Requirement: - write one program that uses two dimensional array to allow two players to play tic-tac-toe. The program asks for moves alternately from player X and player O to enter a number (1 - 9) they wish to makr to play the game.The program displays the game positions as follows:  
1 2 3 
4 5 6 
7 8 9 
After each move, the program displays the changed board, for example: 
X X O 
4 5 6 
O 8 9 
- the program should have following functions:
 1.) a function called void userinput(char a[ ] [3], int 3, char turn) to take in user's input. 
 
 2.) function called void printTTTtabe(char tablefunction[ ] [ 3 ], int size = 3) to print out the board and move. 
 
3.)a function called bool gameover(char a[ ] [ ], int 3) to tell if game is over. 
 
a function called char win(char a[ ][ 3 ], int 3) to tell who wins (or draw.)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Mannino Michael

5th Edition

0983332401, 978-0983332404

More Books

Students also viewed these Databases questions

Question

Design a training session to maximize learning. page 296

Answered: 1 week ago

Question

Design a cross-cultural preparation program. page 300

Answered: 1 week ago