Please implement a basic version of Tic Tac Toe:

1. Function main and function headers are provided. Please implement the functions and do not change the main.

2. Our program must produce identical output:

Assignment-03_PA_Run1.txt


-------------
| | | |
-------------
| | | |
-------------
| | | |
-------------
Enter a row (0, 1, 2) for player X : 0
Enter a column (0, 1, 2) for player X: 0

-------------
| X | | |
-------------
| | | |
-------------
| | | |
-------------
Enter a row (0, 1, 2) for player O : 0
Enter a column (0, 1, 2) for player O: 0
This cell is already occupied. Try a different cell
Enter a row (0, 1, 2) for player O : 0
Enter a column (0, 1, 2) for player O: 1

-------------
| X | O | |
-------------
| | | |
-------------
| | | |
-------------
Enter a row (0, 1, 2) for player X : 1
Enter a column (0, 1, 2) for player X: 1

-------------
| X | O | |
-------------
| | X | |
-------------
| | | |
-------------
Enter a row (0, 1, 2) for player O : 2
Enter a column (0, 1, 2) for player O: 2

-------------
| X | O | |
-------------
| | X | |
-------------
| | | O |
-------------
Enter a row (0, 1, 2) for player X : 1
Enter a column (0, 1, 2) for player X: 0

-------------
| X | O | |
-------------
| X | X | |
-------------
| | | O |
-------------
Enter a row (0, 1, 2) for player O : 2
Enter a column (0, 1, 2) for player O: 0

-------------
| X | O | |
-------------
| X | X | |
-------------
| O | | O |
-------------
Enter a row (0, 1, 2) for player X : 1
Enter a column (0, 1, 2) for player X: 2

-------------
| X | O | |
-------------
| X | X | X |
-------------
| O | | O |
-------------
X player won

Assignment-03_PA_Run2.txt


-------------
| | | |
-------------
| | | |
-------------
| | | |
-------------
Enter a row (0, 1, 2) for player X : 1
Enter a column (0, 1, 2) for player X: 1

-------------
| | | |
-------------
| | X | |
-------------
| | | |
-------------
Enter a row (0, 1, 2) for player O : 0
Enter a column (0, 1, 2) for player O: 2

-------------
| | | O |
-------------
| | X | |
-------------
| | | |
-------------
Enter a row (0, 1, 2) for player X : 2
Enter a column (0, 1, 2) for player X: 2

-------------
| | | O |
-------------
| | X | |
-------------
| | | X |
-------------
Enter a row (0, 1, 2) for player O : 0
Enter a column (0, 1, 2) for player O: 0

-------------
| O | | O |
-------------
| | X | |
-------------
| | | X |
-------------
Enter a row (0, 1, 2) for player X : 2
Enter a column (0, 1, 2) for player X: 0

-------------
| O | | O |
-------------
| | X | |
-------------
| X | | X |
-------------
Enter a row (0, 1, 2) for player O : 2
Enter a column (0, 1, 2) for player O: 1

-------------
| O | | O |
-------------
| | X | |
-------------
| X | O | X |
-------------
Enter a row (0, 1, 2) for player X : 1
Enter a column (0, 1, 2) for player X: 0

-------------
| O | | O |
-------------
| X | X | |
-------------
| X | O | X |
-------------
Enter a row (0, 1, 2) for player O : 1
Enter a column (0, 1, 2) for player O: 2

-------------
| O | | O |
-------------
| X | X | O |
-------------
| X | O | X |
-------------
Enter a row (0, 1, 2) for player X : 0
Enter a column (0, 1, 2) for player X: 1

-------------
| O | X | O |
-------------
| X | X | O |
-------------
| X | O | X |
-------------
No winner
Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.