Can you please explain the difference between copy constructor and an assignment operator?

Submitted by: Administrator
A copy constructor is used to declare and initialize an object from another object.
E.g: integer I2(I1);

An assignment operator doesnot invoke the copy constructor. It simply assigns the values of an object to another, member by member.
Submitted by: Administrator

Read Online C++ Constructors Job Interview Questions And Answers