这是家庭作业,所以我不希望您给我答案,我只是想确切地知道我的指导老师要我做什么?

给定下面的字符串指针和变量sz,使用它们动态创建大小为sz的数组。

string * sp;
int sz=5;

最佳答案

他希望您编写一行代码,以动态地将指针数组分配给大小为sz的字符串。

string * sp;
int sz = 5;
// put a line of code here that allocates the array

关于c++ - C++一般解释,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9936394/

10-11 00:53