Yes. You can see the compatibility between 80-bit floating points (long double in C) and 64-bit integer (long long int) with a code like this: long double x0,x1,y0,y1; x0 = 18446744073709551615.0L; /* 2^64 - 1 */ x1 =…
Yes. You can see the compatibility between 80-bit floating points (long double in C) and 64-bit integer (long long int) with a code like this: long double x0,x1,y0,y1; x0 = 18446744073709551615.0L; /* 2^64 - 1 */ x1 =…