s-long-a-long.c

来自「gcc3.2.1源代码」· C语言 代码 · 共 22 行

C
22
字号
#include <stdio.h>static struct sss{  long f;  long a[10];} sss;#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)int main (void) {  printf ("++++Array of long in struct starting with long:\n");  printf ("size=%d,align=%d\n",          sizeof (sss), __alignof__ (sss));  printf ("offset-long=%d,offset-arrayof-long=%d,\nalign-long=%d,align-arrayof-long=%d\n",          _offsetof (struct sss, f), _offsetof (struct sss, a),          __alignof__ (sss.f), __alignof__ (sss.a));  printf ("offset-long-a[5]=%d,align-long-a[5]=%d\n",          _offsetof (struct sss, a[5]),          __alignof__ (sss.a[5]));  return 0;}

⌨️ 快捷键说明

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