Loading practice questions
Copy constructor is a constructor which ________________
Correct Answer: C — Creates an object by initializing it with another previously created object of same class
Explanation:
The object that has to be copied to new object must be previously created. The new object gets initialized with the same values as that of the object mentioned for being copied. The exact copy is made with values.