VOOZH about

URL: https://www.geeksforgeeks.org/cpp/ios-manipulators-showpos-function-in-c/

⇱ ios manipulators showpos() function in C++ - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ios manipulators showpos() function in C++

Last Updated : 12 Jul, 2025
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:
Output:
showpos flag: +10
+0
Example 2:
Output:
showpos flag: -10
Reference: https://cplusplus.com/reference/ios/showpos/
Comment
Article Tags: