Can someone please translate this MS lie language into
ordinary logical English language.
I need a "long double" data type that is capable to hold
bigger numbers than the normal "double" type can hold.
Has MS' crappy compiler VC6 implemented this data type or not?
What is your understanding from the citations below from the MS' 'documentation' ,
and/or your own practical experience regarding this?
"Type long double
The long double contains 80 bits: 1 for sign, 15 for exponent,
and 64 for mantissa. Its range is +/-1.2E4932 with at least 19 digits of precision.
Although long double and double are separate types,
the representation of long double and double is identical."
"double
Type double is a floating type that is larger than or equal to type float,
but shorter than or equal to the size of type long double [-->1]
long double [-->1]
Type long double is a floating type that is equal to type double.
[1] The representation of long double and double is identical.
However, long double and double are separate types."
"Table 3.2 Sizes of Fundamental Types
...
float 4 bytes
double 8 bytes
long double 8 bytes"
ordinary logical English language.
I need a "long double" data type that is capable to hold
bigger numbers than the normal "double" type can hold.
Has MS' crappy compiler VC6 implemented this data type or not?
What is your understanding from the citations below from the MS' 'documentation' ,
and/or your own practical experience regarding this?
"Type long double
The long double contains 80 bits: 1 for sign, 15 for exponent,
and 64 for mantissa. Its range is +/-1.2E4932 with at least 19 digits of precision.
Although long double and double are separate types,
the representation of long double and double is identical."
"double
Type double is a floating type that is larger than or equal to type float,
but shorter than or equal to the size of type long double [-->1]
long double [-->1]
Type long double is a floating type that is equal to type double.
[1] The representation of long double and double is identical.
However, long double and double are separate types."
"Table 3.2 Sizes of Fundamental Types
...
float 4 bytes
double 8 bytes
long double 8 bytes"
Comment