Given int x[]={1, 2, 3, 4, 5, 6, 7, 8, 9, 0},*p=x,k; and k is larger than or equal to 0 and less than 10, which one of the following is a wrong reference to the array element x[k]?
A、*(x+k);
B、p+k;
C、x[p-x+k];
D、*(&x[k])
发布时间:2025-07-19 07:27:25