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:

Verified
Correct Answer:
Verified
Q39: Instead of initially creating a string as
Q40: The address operator in C is _.<br>A)&<br>B)*<br>C)-><br>D)")"
Q41: The _ in the expression *(gPtr +
Q42: The expression *(gPtr + 3) changes the
Q43: By adding numbers to and subtracting numbers
Q45: Adding _ to a pointer causes the
Q46: The indirection operator in C is _.<br>A)&<br>B)*<br>C)-><br>D)")"
Q47: &grade[3] is equivalent to _; assume that
Q48: In every respect, an array name and
Q49: When an array is created, the compiler