#include
int main(){
typedef union{
long i;
int k[5];
char c;
}DATE;
struct date{
int cat;
DATE cow;
double dog;
}too;
DATE max;
printf ("%d\n", sizeof(struct date));
printf ("%d\n", sizeof(struct date) +sizeof(max));
}
如有帮助,欢迎点赞+采纳哈!