填空题

以下程序的输出结果是 【13】
#include<stdio.h>
main()
struct stru
int a;
float b;
char d[4];
;
printf("%d\n",sizeof(struct stru));

【参考答案】

J