• 2022-06-06
    在如下结构体定义中,不正确的是。
    A: structstudent{longno;double score;};
    B: structstud[20]{long no;doublescore;};
    C: structstudent{longno;doublescore;}stud[20];
    D: struct{longno;doublescore;}stud[100];