填空题

以下程序用来输出结构体变量ex所占存储单元的字节数,请填空。
struct st
char name[20];double score;;
main()
struct st ex;
pfintf("exsize:%d\n",sizeof(______));

【参考答案】

struct st或ex