Displaying Currency in C++

Started by
1 comment, last by reptor 13 years, 9 months ago
I have written a function that displays double numbers in
currency format 10000 ==> 10,000.00
but i want to know if there are any library in c++ that supports
this [because it will be more optimized and integrated than my poor function]

Any Help please ?
Advertisement
You can use the money_put locale facet.
The ICU - International Components for Unicode library can deal with localised currencies.

This topic is closed to new replies.

Advertisement