int count = 0;
while(count < 8)
{
int player1[5];
int player2[4];
cout << "Player1 it's your turn, type the number of your desired location: \n";
cin >> player1[count];
cout << "Player2 it's your turn, type the number of your desired location: \n";
cin >> player2[count];
++count;
}
system("PAUSE");
return 0;
}
}
WHY DOES THE FOR LOOP, THAT DISPLAYS THE TIC TAC TOE TABLE, NOT EXECUTE AGAIN?
PLEASE HELP ME !