Hi all
I'm new to this site and hoping someone can assist with this problem. I've done all the code for the Tic Tac Toe game but having problems placing the 'o's & 'x's. This is the part of code I'm stuck on. Any help is greatly appreciated.
char PLAYER_TURN()
{
int i;
int x,y;
board[9];
drawX(x,y);
do
{
displayBoard();
for (i = 0; i<9;i++);
while (board[i] ==! -1)
{
i++;
}
board[i]=0;
}
return 0;
}