Quote:
> Indicate whether or not each of these expressions is equivalent to a[j][k]
> A: *(a[j] + k)
> B: (*(a+j))[k]
> C: (*(a+k))[j]
> D: *(&a[0][0] + j + k)
> E: *((*(a+j))+k)
Why don't you just send us your instructors email address, so you don't have to
post these one at a time?
Once you know that E1[E2] means the same thing as (*(E1+(E2))), you can
immediately do your homework for yourself.
--
--