浮点数的表示的复杂性,双结合大小端序的表示,成为众多开发者的噩梦!
辽宁凤凰山-2021-10.jpg
一、测试程序:
#include <stdio.h>
int main(int argc, char const *argv[])
{
float f=1.5;
char* c=&f;
printf("%hd\n",*c);
c++;
printf("%hd\n",*c);
c++;
printf("%hd\n",*c);
c++;
printf("%hd",*c);
return 0;
}
网友评论