首页 > 代码库 > P158

P158

#include<stdio.h>
typedef union{
	long x[2];
	int y[4];
	char z[8];
}MYTYPE;
MYTYPE them;
main()
{
	printf("%d\n",sizeof(them));
}