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: Important
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 moreCalling Function in Python
Calling a Function in Python After creating a function in Python we can call it by using the name of the functions Python followed by parenthesis […]
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 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 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