is there a manipulator in C++ that do that ?
if not how can i cout my numbers formatted that way .
if the number is larger than 999.99 i want to put a comma after the first 3 digits and after the 6 digits ..etc
x = 99456
Example : cout << X
shows in the screen : 99,456 instead of 99456 .