填空题
下面程序的运行结果是
1
。
typedef union student
{char name[10];
long sno;
char sex;
float score[4];
}STU;
main()
{ STU a[5];
printf("/%d\n",sizeof(a));
}
1、
【正确答案】
1、80
【答案解析】
提交答案
关闭