Slide 2.5: Reading and displaying file contents Slide 2.7: Seeking Home |
Flag | Effect IF Set |
---|---|
ios_base::basefield |
A constant that can be used as masks: dec | oct | hex |
ios_base::boolalpha |
Input/output bool objects as alphabetic names (true, false) |
ios_base::hex |
Input/output integer is in hexadecimal base format |
ios_base::showpoint |
Output floating-point values including always the decimal point |
ios_base::showbase |
Output integer values preceded by the numeric base |
ios_base::skipws |
Skip leading whitespaces on certain input operations. |
ios_base::uppercase |
Output uppercase letters replacing certain lowercase letters |
while ( 1 ) { ... }
true
.
istream >> char& ch;
>>
inherited from the class istream performs a formatted input operation (extraction). cin
is the standard input stream.
bool eof( ) const;
End-Of-File
has been reached.