ios manipulators oct() function in C++ Last Updated : 02 Sep, 2019 Comments Improve Suggest changes Like Article Like Report 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 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 oct() function #include <iostream> using namespace std; int main() { // Initializing the number int n = 321; // Using oct() cout << "oct flag: " << oct << n << endl; return 0; } Output: oct flag: 501 Example 2: CPP // C++ code to demonstrate // the working of oct() function #include <iostream> using namespace std; int main() { // Initializing the number int n = -321; // Using oct() cout << "oct flag: " << oct << n << endl; return 0; } Output: oct flag: 37777777277 Reference: http://www.cplusplus.com/reference/ios/oct/ Comment More infoAdvertise with us Next Article ios manipulators oct() function in C++ G guptayashgupta53 Follow Improve Article Tags : Misc C++ cpp-ios cpp-manipulators Practice Tags : CPPMisc Similar Reads 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 showpos() function in C++ The showpos() method of stream manipulators in C++ is used to set the showpos format flag for the specified str stream. This flag always displays the non negative values along with their + sign. Syntax: ios_base& showpos (ios_base& str) Parameters: This method accepts str as a parameter whic 1 min read ios manipulators showpoint() function in C++ The showpoint() method of stream manipulators in C++ is used to set the showpoint format flag for the specified str stream. This flag always displays the floating point values along with their decimal values. Syntax: ios_base& showpoint (ios_base& str) Parameters: This method accepts str as 1 min read ios manipulators unitbuf() function in C++ The unitbuf() method of stream manipulators in C++ is used to set the unitbuf format flag for the specified str stream. This flag flushes the associated buffer after each operation. Syntax: ios_base& unitbuf (ios_base& str) Parameters: This method accepts str as a parameter which is the stre 2 min read 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 Like