A. 数组 B. 变量 C. 指针 D. 结构体
A. struct ex{int n;float m;}stt; B. struct {int n;float m;}ex; struct ex stt; C. struct ex{int n;float m;}td; struct ex stt; D. struct {int n;float m;}stt;
A. struct是结构体关键字 B. struct stu是用户定义结构体类型 C. 该结构体有四个成员项 D. stu1是一个结构体变量