📄️ Class & Object
Class is a blueprint of an object, which define the functionality and attributes of an object.
📄️ Constructor
A constructor is a special type of member function that is called when an object of a class is created. Constructors are used to initialize the member variables of an object and to perform any other tasks that are required to set up the object for use.
📄️ Introduction to OOPs
Object-oriented programming is a type of programming which is based on objects rather than functions and procedures.
📄️ Inheritance
Inheritance is way of using object property to another object. or way extending the functionality of object.
📄️ Namespace
Namespace is a grouping machenism of c++ classes, function and interfaces.
📄️ OOPs vs POPs
OOPs and POPs both are the type of programming paradism, used in the development, both have its own advantages and disadvantages.
📄️ Operator Overloading
To extend the functionality of operator. overloading has many types and uses.