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




a[i][j][k][l] can be shown as *(*(*(*(a+i)+j)+k)+l)


No comments:

Post a Comment