Top "Manipulators" questions

Anything related to C++ I/O manipulators, i.e. special kinds of objects that alter the behavior of streams.

Center text in fixed-width field with stream manipulators in C++

I am refactoring some legacy code which is using printf with longs strings (without any actual formatting) to print out …

c++ string stringstream ostream manipulators
C++ - How to reset the output stream manipulator flags

I've got a line of code that sets the fill value to a '-' character in my output, but need …

c++ manipulators
Overload handling of std::endl?

I want to define a class MyStream so that: MyStream myStream; myStream << 1 << 2 << 3 << …

c++ overloading iostream manipulators endl
How do I use a manipulator to format my hex output with padded left zeros

The little test program below prints out: And SS Number IS =3039 I would like the number to print out with …

c++ manipulators
Effect of noskipws on cin>>

As I understand, the extraction operator skips the whitespace in the beginning and stops upon encountering a whitespace or end …

c++ stream manipulators