首页题库练习题目详情
面向对象程序设计单选题中等

以下哪个是C++中正确的一维数组定义方式?

Aint arr[5];
Bint arr(5);
Cint arr = {1,2,3,4,5};
Dint arr = new int[5];