anon2.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 32 行

C
32
字号
extern "C" void abort (void);static union {   int x1;   long x2;   short x3;  long x4;};static union {  union {    union {      int z;    };  };  union {    union {      double d;      int i;    };  };};int main(){  z = 3;  if (i != 3)    abort ();  d = 2.5;}

⌨️ 快捷键说明

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