下列程序的运行结果为( )。
#include
main()
{ struct date
{int year,month,day;
}today;
printf("%d\n",sizeof(struct date));
}