Question

Q2: The code fragment:
Increment::Increment( int c, int i )
: increment ( i )
{
count = c;
}
does not cause any compilation errors. This tells you that:
a. count must be a non-const variable.
b. count must be a const variable.
c. increment must be a non-const variable.
d. increment must be a const variable.

Answer

This answer is hidden. It contains 32 characters.