// This program demonstrates the use of manipulators with the // cout object. Note the header file iomanip.h. #include #include void main() { double income = 7842.; cout << setprecision(2) << setiosflags(ios::fixed|ios::showpoint) << "Income = $" << income << endl; }