Let assume a, b are _int64 variables.
Need to calculate sqrt((long double)a)*sqrt((long double)b) in high precision 80 bit floating point.
Example. (__int64)(sqrt((long double)a)*sqrt((long double)a) + 0.5) != a in many cases as should be.
Which win32 C/C++ compiler can manage 80 bit floating point arithmetic?
long double sqrtl(long double x);– Karoly Horvath Aug 10 '11 at 19:25