Loading practice questions
The arguments to a copy constructor _____________
Correct Answer: B — Must be const
Explanation:
The object should not be modified in the copy constructor. Because the object itself is being copied. When the object is returned from a function, the object must be a constant otherwise the compiler creates a temporary object which can die anytime.