A. struct student 是结构类型 B. person 是结构变量 C. person 是结构类型 D. struct 是结构类型
A. 可用 S 声明结构变量 B. 可用 T 声明结构变量 C. S 是结构变量 D. T 是结构变量
A. typedef struct date{ int year,month, day;} type_date; B. struct{char name[10];float angle;}; C. typedef date{ int year,month, day;} type_date; D. struct date{ int year,month, day;} type_date;
A. 定义了结构变量 type_date B. 这个定义是错误的 C. 定义了结构类型 type_date D. 定义了结构 type_date