Tagged Questions
2
votes
3answers
97 views
Precision of decimal number in Java, C, C++ and others
Let's say we have this kind of loop (pseudocode)
double d = 0.0
for i in 1..10 {
d = d + 0.1
print(d)
}
In C with printf("%f", d) I get this:
0.100000
0.200000
0.300000
...
1.000000
In ...
2
votes
3answers
573 views
double string conversion and locale
A common international issue is the conversion of double values represented in strings.
These stuff is found in a lot of areas.
Starting with csv files which are either called
comma separated
or
...
1
vote
1answer
318 views
mfc program using wrong decimal separator/language
I have the comma as the decimal separator in my Windows regional settings (Portuguese language), and all the programs I develop use the comma when formatting strings or using atof.
However, this ...