I have a tic tac toe board i am finding it hard to figure out how to change parts of the array that contains char. I am looking for a way to to ask the user to select a char to change in the the array and then once they input their answer it replaces the char with the new input by the user.
char[] tic = {'1', '2', '3', '4', '5', '6', '7', '8', '9'};
.........