有说明语句,则访问动态数组元素的正确语句是()。int p=new int[10];(A)int a=p; (B)int a=&p;(C)int a=p[1] (D)int a=p[1];
int p=new int[10];这句语法都不对
D
c选项 int*a=p[1]