In C++ I\'ve got a float/double variable.
When I print this with for example cout the resulting string is period-delimited.
cout << 3.1415 <
To be precise, this is controlled by the std::numpunct::decimal_point() value. You can imbue() another locale with another decimal_point()
std::numpunct::decimal_point()
imbue()
decimal_point()