Chapter 6: Problem 12
What output will be produced when the following lines are executed (assuming the lines are embedded in a complete and correct program with the proper include directives)? cout << "*"; cout.width(5); cout << 123 << "*" << 123 << "*" << endl; cout << "*" << setw(5) << 123 << "*" << 123 << "*" << endl;