20010226-1.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 25 行
C
25 行
#include <float.h>long double dfrom = 1.1;long double m1;long double m2;unsigned long mant_long;int main(){ /* Some targets don't support a conforming long double type. This is common with very small parts which set long double == float. Look to see if the type has at least 32 bits of precision. */ if (LDBL_EPSILON > 0x1p-31L) return 0; m1 = dfrom / 2.0; m2 = m1 * 4294967296.0; mant_long = ((unsigned long) m2) & 0xffffffff; if (mant_long == 0x8ccccccc) return 0; else abort();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?