Single Inheritance in C++ Single Inheritance in C++ Single Inheritance : In single inheritance, a class is allowed to inherit from only one class. […]
Read moreTag: object oriented programming
Inheritance in C++
Inheritance in C++ Inheritance in C++ The capability of a class to derive properties and characteristics from another class is called inheritance . Inheritance […]
Read moreVirtual Function in C++
Virtual Function in C++ Virtual Function in C++ Virtual Function is one of the advances features of OOPs .Β A virtual function (also known as […]
Read moreFriend Function in C++
Friend Function in C++ Friend Function in C++ AΒ friend classΒ can access private and protected members of other classes in which it is declared as […]
Read moreDestructors in C++
Destructors in C++ Destructors in C++ DESTRUCTOR A Destructor is also a special member function like a constructor .Β A destructor destroys the class […]
Read moreConstructor in C++
Constructor in C++ Constructor in C++ Constructor is a member function of a class , whose name is the same as the class name […]
Read moreConcepts of OOPs in C++
Concepts of OOPs in C++ Concepts of OOPs in C++ There are some basic concepts of OOPs : Class Object Encapsulation Abstraction Polymorphism Inheritance […]
Read moreOOPs Concepts in C ++
OOPs Concepts in C++ OOPs Concepts in C++ OOPs stands for Object Oriented Programming . An object oriented programming language uses object in its […]
Read more
Recent Comments