Understanding Constructors and Methods in C++
Constructors and Methods in C++:
/constructors are special kindo' methods which are invoked upon the creation(construction) of an object.
//two rules for cinstructor:
//they have the same name as the class of the object.
//they have no return type.
/...
tier3totech.hashnode.dev1 min read