bitfld-2.c

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

C
29
字号
/* Test whether bit field boundaries aren't advanced if bit field type   has alignment large enough.  */extern void abort (void);extern void exit (int);struct A {  unsigned short a : 5;  unsigned short b : 5;  unsigned short c : 6;};struct B {  unsigned short a : 5;  unsigned short b : 3;  unsigned short c : 8;};int main (){  /* If short is not at least 16 bits wide, don't test anything.  */  if ((unsigned short) 65521 != 65521)    exit (0);  if (sizeof (struct A) != sizeof (struct B))    abort ();  exit (0);}

⌨️ 快捷键说明

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