Multiple Choice
Assuming that t is an array and tPtr is a pointer to that array, which expression refers to the address of element 3 of the array?
A) *(tPtr + 3)
B) tPtr[3]
C) &t[3]
D) *(t + 3)
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q4: A string array:<br>A) Stores an actual string
Q5: Given that k is an integer array
Q6: Which of the following is false for
Q7: Which of the following is false about
Q8: Which of the following best describes the
Q10: (*max)(num1, num2, num3);:<br>A) Is the header for
Q11: The & operator can be applied to:<br>A)
Q12: Which of the following statements about pointer
Q13: Which of the following can have a
Q14: All of the following can cause a