用new运算符创建一维数组的正确形式是
A.int *p=new a[10];
B.float *p=new float[10];
C.int *p=new float[10];
D.int *p=new int[5]={1,2,3,4,5,6};
正确答案B
用new运算符创建一维数组的正确形式是
A.int *p=new a[10];
B.float *p=new float[10];
C.int *p=new float[10];
D.int *p=new int[5]={1,2,3,4,5,6};
正确答案B