Question

Assuming that t is an array and tPtr is a pointer to that array, what expression refers to the address of element 3?
(a) *(tPtr + 3)
(b) tPtr[3]
(c) &t[3]
(d) *(t + 3)

Answer

This answer is hidden. It contains 3 characters.