Document_(4)[1]
Document_(4)[1]
#include <iostream>
#include <stdlib.h>
//Variable Declaration
int choice;
int row,column;
void display_board(){
cout<<"tt | | n";
cout<<"tt_____|_____|_____n";
cout<<"tt | | n";
cout<<"tt_____|_____|_____n";
cout<<"tt | | n";
void player_turn(){
if(turn == 'X'){
//updating the board according to choice and reassigning the turn Start
cin>> choice;
switch(choice){