标签: c floating-point
在浮点数(IEEE 754)上执行bit-twiddling时,我想知道结果值是否具有标准化的尾数。
如何在C代码中检测到这一点?
答案 0 :(得分:4)
#include <math.h> … if (isnormal(x)) …