I know in C++, you\'re able to peek at the next character by using: in.peek();.
in.peek();
How would I go about this when trying to \"peek\" at the next character
You could use a getc followed by an ungetc
getc