<iomanip>
Include the iostreams standard header <iomanip> to define several manipulators that each take a single argument.
#include <iomanip>
Remarks
Each of these manipulators returns an unspecified type, called T1 through T10, that overloads both basic_istream<Elem, Tr>::operator>> and basic_ostream<Elem, Tr>::operator<<.
Manipulators
Obtains a monetary amount, optionally in international format. |
|
Obtains a time in a time structure by using a specified format. |
|
Provides a monetary amount, optionally in international format. |
|
Provides a time in a time structure and a format string to use. |
|
Clears the specified flags. |
|
Set base for integers. |
|
Sets the character that will be used to fill spaces in a right-justified display. |
|
Sets the specified flags. |
|
Sets the precision for floating-point values. |
|
Specifies the width of the display field. |
See Also
Reference
Thread Safety in the C++ Standard Library