C++ Tic Tac Toe Game Project - source code
alhamdulillahhhhh #include <iostream> using namespace std ; char square [ 10 ] = { 'o' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' }; int checkwin (); void board (); int main () { int player = 1 , i , choice ; char mark ; do { board (); player =( player % 2 )? 1 : 2 ; cout << "Player " << player << ", enter a number: " ; cin >> choice ; mark =( player == 1 ) ? 'X' : 'O' ; if ( choice == 1 && square [ 1 ] == '1' ) square [ 1 ] = mark ; else if ( choice == 2 && square [ 2 ] == '2' ) square [ 2 ] = mark ; else if ( choice == 3 && square [ 3 ] == '3' ) square [ 3 ] = mark ; else if ( choice == 4 && square [ 4 ] == '4' ) square [ 4 ] = mark ; ...