I am interested to see the way the computer processes the output of the cout
command (i.e. how it goes through the various iterations for each row) in the following program. Is it possible to decrease the speed of the process?
#include <iomanip>
#include <iostream>
using namespace std;
int main(int argc, const char * argv[])
{
for (int x=1; x <= 12; x++)
{
for (int y=1; y <= 12; y++)
cout << setw(4) << x*y; cout << endl;
}
}