char fill( char cFill );
char fill() const;
cFill
The new fill character to be used as padding between fields.
The first overloaded function sets the stream's internal fill character variable to cFill and returns the previous value. The default fill character is a space.
The second fill function returns the stream's fill character.
ios setfill manipulator