Default constructors If you don’t declare a constructor, a default constructor is provided for you. The default constructor has no arguments and invokes the no-argument constructor in the superclass.
Read moreWhat is constructor function?
A constructor is a special type of member function of a class which initializes objects of a class . In C++, Constructor is automatically called when object(instance of class) is created. It is special member function of the class because it does not have any return type.
Read more