I am creating my first project - a chess game. Right now, I have the program ask the user for a row and then a column, like so:
White move.
column: F
row: 3
However, I would like to make this a bit more seamless, so that it looks like the following:
White move.
Input: F3
Then, it takes the 'F' and puts it in a variable, and takes the '3' and puts that in a separate variable. I see solutions to this in other languages, but I don't see it for C. Any ideas?