• 2022-06-08
    以下对结构体类型的变量定义中不正确的是 。
    A:
    B: define STUD struct student STUD {long num; char name[20]; char sex; float score;}; STUD stud1,stud2;
    C: struct student {long num; char name[20]; char sex; float score; }stud1,stud2;
    D: struct {long num; char name[20]; char sex; float score; } stud1,stud2;
    E: struct {long num; char name[20]; char sex; float score; }student;struct student stud1,stud2;