下列程序的运行结果为()。
#include
main()
{structdate
{intyear,month,day;
}today;
printf("%dn",sizeof(structdate));
}
部门表tb_dept的定义如下:下列说法中正确的是______。
CREATETABLEtb_dept(
deptnoCHAR(2)primarykey,
dnameCHAR(20)Notnull,
managerCHAR(12),
telephoneCHAR(15)
);