basic_istream& getline( char_type* s, std::streamsize count ); (1) basic_istream& getline( char_type* s, std::streamsize count, char_type delim ); (2)
Extracts characters from stream until end of line or the specified delimiter delim.
The first version is equivalent to getline(s, count, widen('\n')).
Behaves as UnformattedInputFunction. After constructing and checking the sentry object, extracts characters from *this and stores them in successive locations of the array who