0
Please describe th cin.get() function.
c++
4 Respuestas
+ 3
cin.get() reads in input, including whitespace. e.g. char c; cin.get(c);
Can also be used like this:
char c[40];
cin.get(c,40,'e');
Reads a number of chars with a terminating character. c doesn’t have 'e'.
Keeps 'e' in input stream.
+ 3
Post an example of want you're aiming to do, preferably in code or pseudo code.
0
how it is used in a for loop
0
how it could be used as
a updater