How we can find out the next character of the entered one. For example, if I entered the character \"b\" then how do I get the answer \"c\"?
How about:
char first = 'c'; char nextChar = (char)((int) first + 1);