Answer:
format floating-point numbers in fixed-point notation
Step-by-step explanation:
Required
Function of fixed manipulator
This question will be answered from the perspective of C++ programming language (however, the explanation is applicable to programming languages that uses fixed manipulators)
Fixed manipulators in C++ is used to set floating point numbers to a stated fixed point.
Take for instance;
double pi = 3.1415926534;
cout.precision(2);
cout<< fixed << pi;
The third line of the program where the fixed manipulator is used to format pi to 2 fixed point notation.
Hence, the output will be 3.14