Program to Find Quotient and Remainder in C++ Program to Find Quotient and Remainder in C++ #include <iostream> using namespace std; int main() […]
Read moreCategory: c++
Program to Print Multiplication Table in C++
Program to Print Multiplication Table in C++ Program to Print Multiplication Table in C++ #include<iostream> using namespace std; int main(){ int number; cout<< “Enter the number for printing multiplication table”<< endl; cin >>number; // printing the multiplication number for(int i=1; i<11; i++){ cout<< number <<” X “ << i <<” = “<< number*i <<endl; } […]
Read moreFunction Overriding in C++
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 moreHierarchical Inheritance in C++
Hierarchical Inheritance in C++ Hierarchical Inheritance in C++ Hierarchical Inheritance : Inheriting is a method of inheritance where one or more derived classes is […]
Read moreMultiple 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 moreMultilevel Inheritance in C++
Multilevel Inheritance in C++ Multilevel Inheritance in C++ MULTILEVEL INHERITANCE : In this type of inheritance the derived class inherits from a class, which in […]
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 moreOperator Overloading in C++
Operator Overloading in C++ Operator Overloading in C++ In C++, Operator overloading is a compile-time polymorphism. It is an idea of giving special meaning […]
Read more
Recent Comments