First page Back Continue Last page Graphics
Other istream methods
get(ch) – single character input
getline, get( ), ignore( ) - string input functions.
read – like get-line but doesn't append a null character to the input.
peek – returns the next character but doesn't remove it from the stream. Practice : Prata peeker.cpp
gcount – returns the number of characters read by the last unformatted extraction.
putback – inserts a character back into the input stream.