I am looking for a nice way to print large numbers so they are more readable
ie 6000000
should be
6.000.000
OR
6,000,000 depending on locale
UPDATE
I have tried the following on my code (its on IOS)
char* localeSet = std::setlocale(LC_ALL, "en_US");
cout << "LOCALE AFTER :" << std::locale("").name() << endl;
localeSet is always NILL
and I always get "LCOALE AFTER: C"