VOOZH about

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

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


  • Courses
  • Tutorials
  • Interview Prep

ios manipulators fixed() function in C++

Last Updated : 12 Jul, 2025
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)
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:
Output:
without fixed flag: 1.23
with fixed flag: 1.23000
Example 2:
Output:
without fixed flag: 1
with fixed flag: 1.00000
Example 3:
Output:
without fixed flag: 1.23e+09
with fixed flag: 1230000000.00000
Reference: https://cplusplus.com/reference/ios/fixed/
Comment
Article Tags: