【多选题】在中华人民共和国境内,是指生产、委托加工和进口属于应当缴纳消费税的消费品的()在境内。
【单选题】有结构体和变量定义如下: typedef struct date { int year,month,day; }Date; typedef struct student { int num; char name[20]; Date birthday; }STU; STU s; 若变量s中的生日为1999年10月12日,正确的赋值操作为( )
A.
year=1999; month=10; day=12;
B.
s.year=1999; s.month=10; s.day=12;
C.
birthday.year=1999; birthday.month=10; birthday.day=12;
D.
s.birthday.year=1999; s.birthday.month=10; s.birthday.day=12;
【多选题】关于“艺术终结”这一命题,描述正确的是()。
【单选题】一些植物的叶可形成不定根和不定芽进行繁殖,例如
【单选题】若有如下定义和语句 typedef struct { int n; double dt; } IANDF,*PIF; PIF p=(PIF)malloc(sizeof(IANDF)); 则下述说法中正确的是
D.
IANDF和PIF都可以作为结构体变量名使用