Multiple choice

What would be the equivalent pointer expression for referring the array element a[i][j][k][l]?

  1. ((((a+i)+j)+k)+l)

  2. a+i+j+k+l

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

  4. ((((a+i)+j)+k)+l)

  5. None of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

a[i] can be written as *(a+i), therefore a[i][j][k][l] can be written as given in the option.