Home » C Programming » Pointers

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

Correct Answer: *(*(*(*(a+i)+j)+k)+l)

← Previous Question Next Question→

More Questions from Pointers

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion