このコードの出力が 12 (1100b) である理由を教えてください。
sizeof(bit1) はどのように 4byte ですか???
#include <stdio.h>
#include <stdlib.h>
struct bitfield
{
unsigned a:5;
unsigned c:5;
unsigned b:6;
};
void main()
{
char *p;
struct bitfield bit1={1,3,3}; //a=00001 ,c=00011 ,b=000011
p=&bit1; // p get the address of bit1
p++; // incriment the address of p in 1
printf("%d\n",*p);
printf("%d\n",sizeof(bit1));
}