struct{int day; char mouth; int year;}a, *b;
b=&a;
sizeof(a)的值是5,因为INT为2,CHAR为1,INT为2,故而为5,
请问sizeof(b)为多少?答案是2,请问如何得来?请指教!