ios manipulators showpos() function in C++ Last Updated : 28 Aug, 2019 Comments Improve Suggest changes Like Article Like Report 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 which is the stream for which the format flag is affected. Return Value: This method returns the stream str with showpos format flag set. Example 1: CPP // C++ code to demonstrate // the working of showpos() function #include <iostream> using namespace std; int main() { // Initializing the integers int a = 10; int b = 0; // Using showpos() cout << "showpos flag: " << showpos << a << endl << b << endl; return 0; } Output: showpos flag: +10 +0 Example 2: CPP // C++ code to demonstrate // the working of showpos() function #include <iostream> using namespace std; int main() { // Initializing the integers int a = -10; // Using showpos() cout << "showpos flag: " << showpos << a << endl; return 0; } Output: showpos flag: -10 Reference: http://www.cplusplus.com/reference/ios/showpos/ Comment More infoAdvertise with us Next Article ios manipulators showpos() function in C++ G guptayashgupta53 Follow Improve Article Tags : Misc C++ cpp-ios cpp-manipulators Practice Tags : CPPMisc Similar Reads ios manipulators noshowpos() function in C++ The noshowpos() method of stream manipulators in C++ is used to clear the showbase format flag for the specified str stream. This flag displays the non negative integer values without their + sign. Syntax: ios_base& noshowpos (ios_base& str) Parameters: This method accepts str as a parameter 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 showbase() function in C++ The showbase() method of stream manipulators in C++ is used to set the showbase format flag for the specified str stream. This flag displays the integers along with their base prefixes. Syntax: ios_base& showbase (ios_base& str) Parameters: This method accepts str as a parameter which is the 1 min read ios manipulators noshowpoint() function in C++ The noshowpoint() method of stream manipulators in C++ is used to clear the showpoint format flag for the specified str stream. This flag displays the floating values in decimal only when they have a decimal values.Syntax: ios_base& noshowpoint (ios_base& str) Parameters: This method accepts 1 min read ios manipulators noshowbase() function in C++ The noshowbase() method of stream manipulators in C++ is used to clear the showbase format flag for the specified str stream. This flag displays the integers in decimal only. Syntax: ios_base& noshowbase (ios_base& str) Parameters: This method accepts str as a parameter which is the stream f 1 min read Like