fixed function — Manipulator for fixed-point output
ios_base& fixed(ios_base& stream)
The fixed
function is a
manipulator that sets the floating-point output style to
fixed-point. The function calls stream.setf(ios_base::fixed
, ios_base::floatfield)
and returns stream
.
ios_base::fmtflags
type, noshowpoint
function, scientific
function, showpoint
function, num_get
in <locale>
, num_put
in <locale>