Hello all.
I have a question.
I am watching Stanford CS106B C++ class on YouTube.
But there is something very confusing.
The professor uses the input stream function get(char) without passing a
char to the function.
Like this:
ifstream infile ;
int ch = infile.get();
Shouldn't be like this:
infile.get(char_type);
please clarify.
Thank you.