Our Blogs
what is constructor In C++
constructor is a special member function in c++ because its name is the same as classname. it...
operator overloading in c++.
Operator Overloading gives special meaning to the Operator in c++. A normal c++ Operator acts in a...
what is class and object in c++
Class in C++ Class is a Collection of an Object in c++. it is a user defined datatype in c++. it...
Recursion in C++
A Function Call itself is known as Recursive Function. And, this technique is known as recursion...
Functions in c++
functions is a block of code that performs a specific task in c++. There are two types of...
friend function in c++
If a function is defined as a friend function in C++, then the protected and private data of a...
pointer in c++
A pointer is a variable that stores the address of another variable in c++. The address of the...
structure in c++
The structure is a collection of variables of different data types under a single name in c++. It...
2d array in c++
A list of items can be given one variable name using two subscripts and such a variable is called...