• 2022-06-06
    在如下结构体中,不正确的是( )。
    A: struct student {char name[10]; float score; };
    B: struct stu[5] {char name[10]; float score; };
    C: struct student {char name[10]; float score; } stu[5];
    D: struct {char name[10]; float score; }stu[5];