ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
The arguments to a copy constructor _____________
Correct Answer: B — Must be const
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.