• 2022-06-06
    在如下结构体定义中,不正确的是○。
    A: struct student { int no; char name[10]; float score; }
    B: struct stud[20] { int no; char name[10]; float score; }
    C: struct student { int no; char name[10]; float score; }stud[20];
    D: struct{int no;char name[10];float score;}stud[100];