920410-1.c

来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 31 行

C
31
字号
int alloc_float(f) float f;{  union    {      float f;      int i;    }  u;  u.f=f;  return u.i&~1;}float c_float(int obj){  union    {      float f;      int i;    } u;  u.i=obj;  return u.f;}main(){ int x=alloc_float(1.2);  int y=alloc_float(5.7);  int z=alloc_float(c_float(x)*c_float(y));  printf("%g\n",(double)c_float(z));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?