my main questions are, how tokens (x's , o's) appear on game board? have ask user row number , column number , token placed there. may able tell, new programming. have been @ hours , done. asking on here last resort. if of code done differently or more efficiently or isn't necessary or if did wrong, please let me know. out of ideas. finish program, more detailed be, better. appreciate it. confused , need advice finish this. my code far: #include <iostream> using namespace std; void createboard(int board[][3], char charboard[][3]); void printboard(char charboard[][3]); int checkwinner (int board[][3], int player); bool checkmove(int board[][3], int row, int column); void resetboard(int board[][3]); int main () { int board[3][3]; char charboard[3][3]; int player; int row, column; bool win = false; char again = 'y'; while (win == false) { createboard(board, charboard); printboard(charboard); cout ...