930126-1.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 21 行
C
21 行
struct s { unsigned long long a:8, b:32;};struct sf(struct s x){ x.b = 0xcdef1234; return x;}main(){ static struct s i; i.a = 12; i = f(i); if (i.a != 12 || i.b != 0xcdef1234) abort(); exit(0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?