in C Plus Plus by

Distinguish between shallow copy and deep copy.

1 Answer

0 votes
by

Shallow copy does memory dumping bit-by-bit from one object to another. Deep copy is copy field by field from object to another. Deep copy is achieved using copy constructor and or overloading assignment operator.

...