23

单选题 23 /47

下列哪个语句没有开辟可容纳5个整数的空间?

参考答案

int arr[5];
int arr(5);
int *p = new int[5];
std::vector<int> v(5);