If we assume that we have this class hierarchy: A <-B <-C. I have the following questions:
1) If I implement copy constructor in B, should I call copy constructor A in implementation B?
2) Will the default copy constructor from C call the copy constructor that I implemented in B?
source share