Function Overriding in C++ Function Overriding in C++ Function overriding in C++ is termed as the redefinition of base class function in its derived […]
Read moreCategory: blog
Multiple Inheritance in C++
Multiple Inheritance in C++ Multiple Inheritance in C++ Multiple Inheritance: In this type of inheritance a single derived class may inherit from two or more […]
Read moreSingle Inheritance in C++
Single Inheritance in C++ Single Inheritance in C++ Single Inheritance : In single inheritance, a class is allowed to inherit from only one class. […]
Read moreInheritance 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 moreFunction Overloading in C++
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 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 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 moreFloating Point Numbers
Floating Point Numbers Floating Point Numbers “Floating pointβ refers to a set of data types that encode real numbers, including fractions and decimals. Floating-point […]
Read more
Recent Comments