结构体内部的偏移

来源:互联网 发布:淘宝化妆品正品代购 编辑:程序博客网 时间:2024/04/25 13:41
#include<stdio.h>#include<stdlib.h>#include<stddef.h>typedef struct tagMyTest{int x0;int x1;int x2;}MyTest;int main(){printf("%d\n",offsetof(MyTest,x0));printf("%d\n",offsetof(MyTest,x1));printf("%d\n",offsetof(MyTest,x2));return 0;}

0 0