第20475题
找出不能正确定义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];