union 与sizeof的作用??
struct st_type
{ char name[10];
float score[3];
}
union u_type
{ int i;
unsigned char ch;
struct st_type student;
}t;
printf(“%d\n”,sizeof(t));
union 与sizeof的作用??
为什么我运行这段代码会出错
错在哪里??
struct st_type
{ char name[10];
float score[3];
}
union u_type
{ int i;
unsigned char ch;
struct st_type student;
}t;
printf(“%d\n”,sizeof(t));
union 与sizeof的作用??
为什么我运行这段代码会出错
错在哪里??