Solved

Which of the Following Is True About This Statement

Question 44

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:

verifed

Verified

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

Related Questions