Explain the following terms:
Copy constructor
21 Likes
A constructor used to initialize the instance variables of an object by copying the initial values of the instance variables from another object is known as Copy Constructor.
Answered By
13 Likes
Constructor with default argument
Parameterised constructor
Constructor overloading
Why is an object not passed to a constructor by value? Explain.