第二题:下列哪个引用是不正确的?int a[10

16 查阅
第二题:下列哪个引用是不正确的?int a[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, *p = a;(A) a[p-a]; (B) *(&a); (c) p;

参考答案:

正确答案:D