Types of array - C programming
Q. C programming : Suppose that x is a one dimensional array, then choose the correct answer regarding array.- Published on 19 Oct 15a. *(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: *(x + n) is same as &x[n]