Tic Tac Toe game in CPP

Tic Tac Toe game in C/CPP ||C++ Project Tic Tac Toe game || Tic Tac Toe game project || Tic Tac Toe game project in c++

Tic Tac Toe game in CPP #include<iostream> using namespace std; char board[3][3] = {{‘1′,’2′,’3’} ,{‘4′,’5′,’6’} ,{‘7′,’8′,’9’}}; int choice; char a[10];//NAME PLAYER 1 char b[10];//NAME PLAYER 2 char row,column; char turn = ‘X’; bool draw = false;//1ST FALSE BECAUSE GAME NOT DRAW int count; void display_table(){ system(“cls”); cout<<“\t\t\t\t\t\tTic Tac Toe\n\n”<<endl; cout<<“\t\t\t”<<a<<“[X]”<<“\t\t\t\t\t”<<b<< “[O]\n\n”<<endl;//Tic Tac Toe game in …

Tic Tac Toe game in C/CPP ||C++ Project Tic Tac Toe game || Tic Tac Toe game project || Tic Tac Toe game project in c++ Read More »