Which of the following is TRUE about this statement?
A. sum += *array++; This statement is illegal in C++.
B. This statement will cause a compiler error.
C. This statement assigns the dereferenced pointer's value,
D. then increments the pointer's address.
E. This statement increments the dereferenced pointer's value by one,
F. then assign that value. None of these