Function Overloading in C++ Function Overloading in C++ Function overloading is a feature of object-oriented programming where two or more functions can have the […]
Read moreCategory: c++
Friend 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 moreInline Function in C++
Inline Function in C++ Inline Function in C++ Definition: An inline function is a function that is expanded in line when it is invoked. […]
Read moreAccess Specifiers in C++
Access Specifiers in C++ Access Specifiers in C++ Access specifier used to implement an important aspect of OOPs known as data hiding . Access […]
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 moreTypes of Constructor in C++
Types of Constructor in C++ Types of Constructor in C++ There are three types of Constructor : 1. Default Constructor 2. Parameterized Constructor 3. […]
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