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)

Submitted by: Muhammad
Option B
*(*(*(*(a+i)+j)+k)+l)
Submitted by: Muhammad

c
Submitted by: Vicithra

Read Online C Pointers Job Interview Questions And Answers