Answers

Question and Answer:

  Home  C Pointers

⟩ What would be the equivalent pointer expression for referring the array element a[i][j][k][l] A. ((((a+i)+j)+k)+l) B. *(*(*(*(a+i)+j)+k)+l) C. (((a+i)+j)+k+l) D. ((a+i)+j+k+l)

Option B

*(*(*(*(a+i)+j)+k)+l)

 170 views

More Questions for you: