Hello,
I would like to display on the screen sometimes numbers with “,” separator each 3 figures like:
1,024,876,558 bytes
.
I found oout on internet that you may use:
std::cout.imbue(std::locale(""));
See c++ - Format an integer with thousands separator (recursive implementation) - Code Review Stack Exchange ,
this is part of #include
which does not exist with WINCE 5.
Is there any other include file for this local() ?
Otherwise …
Does any library conversion and format function exist to display numbers with “,” separators each 3 digit ?
Yours