I\'m pretty sure this is a simple question in regards to formatting but here\'s what I want to accomplish:
I want to output data onto the screen using cout
cout
I advise using Boost Format. Use something like this:
cout << format("%|1$30| %2%") % var1 % var2;