typedef struct { unsigned int a:1; unsigned int b:1; unsigned int c:2; unsigned int d:1; unsigned int e:1; }st_btest; int a = offsetof(st_btest,d); //1+1+2 = 4 가 나왔으면하는데;