第20361题 判断
判断给定的C++代码是否合法

请判断以下C++代码是否合法:

struct Student {
    string name;
    int age;
    float score;
};
Student* students = new Student[20];
A

正确

B

错误

提交0次 正确率0.00%
答案解析