+1 vote
in Mathematics by kratos

If x is one dimensional array, then pick up the correct answer

(A) *(x + i) is same as &x[i]

(B) *&x[i] is same as x + i

(C) *(x + i) is same as x[i] +1

(D) (x + i) is same as x[i]

1 Answer

+3 votes
by kratos
 
Best answer

Correct option -**(A) (x + i) is same as &x[i]*

Explanation:-

num[i] is same as *(num+i)

...