Hi,
just a quick question.
if i use a copy constructor in the following way.

A a;
A a1(a)

does it mean that any future updates made in member variable of class A using object 'a',
will also be reflected in a1?

thanks