填空题

下面程序的运行结果是______。
typedef union student
char name[10];
long sno;
char sex;
float score[4];
STU;
main()
STU a[5];
printf("%d\n",sizeof(A) );

【参考答案】

80