Hello I need help in the Programming Language C OnlyPlease.
So the issue is this portion:
- Declare variable char symbol set equal toplayer->gameBoard.board[target.row][target.column]
What I did was:
char player->gameBoard.board[target.row][target.column];
but the issue is I get the error: redefinition of ‘player’ witha different type: ‘char’ vs ‘player *’ (aka ‘human *’)
the aka human stuff is declared earlier in my code…
Answer