Loading practice questions
The copy constructors can be used to ________
Correct Answer: B — Copy an object so that it can be passed to a function
Explanation:
When an object is passed to a function, actually its copy is made in the function. To copy the values, copy constructor is used. Hence the object being passed and object being used in function are different.