?? s-char-a-short.c
字號:
#include <stdio.h>static struct sss{ char f; short a[10];} sss;#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)int main (void) { printf ("++++Array of short in struct starting with char:\n"); printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss)); printf ("offset-char=%d,offset-arrayof-short=%d,\nalign-char=%d,align-arrayof-short=%d\n", _offsetof (struct sss, f), _offsetof (struct sss, a), __alignof__ (sss.f), __alignof__ (sss.a)); printf ("offset-short-a[5]=%d,align-short-a[5]=%d\n", _offsetof (struct sss, a[5]), __alignof__ (sss.a[5])); return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -