Multiple Choice
Which of the following is true about this statement:
Sum += *array++;
A) This statement is illegal in C++.
B) This statement will cause a compiler error.
C) This statement assigns the dereferenced pointer's value, then increments the pointer's address.
D) This statement increments the dereferenced pointer's value by one, then assign that value.
E) None of these
Correct Answer:

Verified
Correct Answer:
Verified
Q37: It is legal to subtract a pointer
Q38: The _, also known as the address
Q39: When you pass a pointer as an
Q40: Select all that apply. Which of the
Q41: What does the following statement do?<br>Double *num2;<br>A)
Q42: Assuming ptr is a pointer variable, what
Q43: The ampersand (&) is used to dereference
Q45: Which of the following statements displays the
Q46: A pointer variable may be initialized with<br>A)
Q47: If you are using an older computer