constconst
keyword used (in both C and C++)?const:const in C++ differs slightly
from that of C. const can also be quite subtle and
complicated to use correctly in C++ ... For these reasons, we leave const
to a more advanced book."const in C++:const mean in this copy constructor
declaration? (Note: This use of const is probably
typical for a copy constructor.)NewClass(const NewClass&
source);int getValue() const;const instance of this class (like source in the copy constructor above) without modifying the object.