code::blocks(GNU GCC Complier)中把10^9定义成double型没有溢出,定义成long double型反倒溢出了。而10^9既没有超过double的范围,更没有超过Long double的范围,这是GNU GCC Complier的bug吗?我的code::blocks是16.01的,已经是最新版了。
#include
#include
double a;
long double b;
int main()
{
a=1E9;
b=a;
printf(" sizeof_Double=%d\n 2^63=%e\n a=%e\n",sizeof(double),pow(2,63),a);
printf(" sizeof_LongDouble=%d\n 2^95=%e\n b=%e\n",sizeof(long double),pow(2,95),b);
return 0;
}
关于如何输出b,如果使用%e,%f或%lf,有警告:format '%e'(或者'%f','%lf') expects argument of type 'double', but argument 4 has type 'long double' [-Wformat=].如果使用小写的l,有警告:unknown conversion type character 0xa in format [-Wformat=].too many arguments for format [-Wformat-extra-args].如果使用大写的L,有警告:unknown conversion type character 'L' in format [-Wformat=]. too many arguments for format [-Wformat-extra-args]
我的处理器也是64位的,指令集 x86, x86-64, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2, FMA, AES