第23420题 单选题
以下C++代码中,不能正确定义Student结构体及包含20个元素的结构数组的是?
A
struct Student {
    string name;
    int age;
    float score;
};
struct Student students[20];
B
struct Student {
    string name;
    int age;
    float score;
};
Student students[20];
C
struct Student {
    string name;
    int age;
    float score;
};
Student* students = new Student[20];
D
struct Student {
    string name;
    int age;
    float score;
};
Student students = new Student[20];
程序运行统计
暂无判题统计