1.

C programming : Suppose that x is a one dimensional array, then choose the correct answer regarding array.

A. *(x + n) is same as &x[n]
B. *&x[n] is same as x + n
C. *(x + n) is same as x[n] +1
D. *(x + n) is same as *x[n]
Answer» B. *&x[n] is same as x + n


Discussion

No Comment Found