930513-1.c

来自「用于进行gcc测试」· C语言 代码 · 共 16 行

C
16
字号
/* The bit-field below would have a problem if __INT_MAX__ is too   small.  */#if __INT_MAX__ < 2147483647int a;#elsestruct s {  int f1 : 26;  int f2 : 8;};f (struct s *x){  return x->f2++ == 0;}#endif

⌨️ 快捷键说明

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