I ran across some code that is initializing a double:
double x = 1e-5;
Does the standard dictate the compiler to interpret that as 0.00001?
or is the above representation error prone?
,
Chris
double x = 1e-5;
Does the standard dictate the compiler to interpret that as 0.00001?
or is the above representation error prone?
,
Chris
Comment