ios manipulators left() function in C++ Last Updated : 02 Sep, 2019 Comments Improve Suggest changes Like Article Like Report The left() method of stream manipulators in C++ is used to set the adjustfield format flag for the specified str stream. This flag sets the adjustfield to left. It means that the number in the output will be padded to the field width by inserting fill characters at the end. Syntax: ios_base& left (ios_base& str) Parameters: This method accepts str as a parameter which is the stream for which the format flag is affected. Return Value: This method returns the stream str with internal format flag set. Example 1: CPP // C++ code to demonstrate // the working of left() function #include <iostream> using namespace std; int main() { // Initializing the integer double x = -1.23; cout.precision(5); // Using left() cout << "left flag: "; cout.width(12); cout << left << x << endl; return 0; } Output: left flag: -1.23 Example 2: CPP // C++ code to demonstrate // the working of left() function #include <iostream> using namespace std; int main() { // Initializing the integer double x = -1.23; cout.precision(5); // Using left() cout << "left flag: "; cout.width(12); cout << left << x << endl; return 0; } Output: left flag: -1.23 Reference: http://www.cplusplus.com/reference/ios/left/ Comment More infoAdvertise with us Next Article ios manipulators left() function in C++ G guptayashgupta53 Follow Improve Article Tags : Misc C++ cpp-ios cpp-manipulators Practice Tags : CPPMisc Similar Reads ios manipulators dec() function in C++ The dec() method of stream manipulators in C++ is used to set the baseline format flag for the specified str stream. This flag sets the baseline for Decimal numbers. Hence the output shows the number in Decimal base. Syntax: ios_base& dec (ios_base& str) Parameters: This method accepts str a 1 min read ios manipulators hex() function in C++ The hex() method of stream manipulators in C++ is used to set the baseline format flag for the specified str stream. This flag sets the baseline for HexaDecimal numbers. Hence the output shows the number in HexaDecimal base. Syntax: ios_base& hex (ios_base& str) Parameters: This method accep 1 min read ios manipulators oct() function in C++ The oct() method of stream manipulators in C++ is used to set the baseline format flag for the specified str stream. This flag sets the baseline for Octal numbers. Hence the output shows the number in Octal base. Syntax: ios_base& oct (ios_base& str) Parameters: This method accepts str as a 1 min read ios manipulators right() function in C++ The right() method of stream manipulators in C++ is used to set the adjustfield format flag for the specified str stream. This flag sets the adjustfield to right. It means that the number in the output will be padded to the field width by inserting fill characters at the start. Syntax: ios_base& 1 min read ios manipulators fixed() function in C++ The fixed() method of stream manipulators in C++ is used to set the floatfield format flag for the specified str stream. This flag sets the floatfield to fixed. It means that the floating-point values will be written in fixed point notations. Syntax: ios_base& fixed (ios_base& str) Parameter 2 min read Like