名词解析:WWW、DNS、FTP、URL、HTTP、超文本、超媒体、DHCP、SMTP、POP3
若有:struct student{int n;char ch[8];} person;下列说法正确的是( )。
A. struct student 是结构类型
B. person 是结构变量
C. person 是结构类型
D. struct 是结构类型
若有: typedef struct S { int g; char h; } T; 下列说法正确的是( )。
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;