Hello,

I know that to format output I can use a number of predefined manipulators such as std::boolalpha, std::hex, etc. and use them such as:


int myNumber = 0;
cout << boolalpha << myNumber...