Solved

If GPtr Is a Pointer That Points to the First

Question 44

Multiple Choice

If gPtr is a pointer that points to the first element of an integer array (and each integer requires four bytes of storage) , ____ references the variable that is three integers beyond the variable pointed to by gPtr.


A) *gPtr + 3
B) *(gPtr + 3)
C) *(gPtr + 3 * 4)
D) *(gPtr + 3 / 4)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions