C
Programming and Technical
Write down the equivalent pointer expression for
referring the same element a[i][j][k][l]?
Read Solution (Total 2)
-
- *(*(*(*(a+i)+j)+k)+l)
- 10 years agoHelpfull: Yes(0) No(0)
- we know array is implicit pointer variable
arr[i] is same as *(arr+i)
same as
a[i][j][k][l] = *(*(*(*(a+i)+j)+k)+l) - 10 years agoHelpfull: Yes(0) No(0)
C Other Question