polymorphism in c++

Polymorphism in c++-: Polymorphism is one of the crucial features of OOP. It simply means ‘one name, multiple form’. Polymorphism is a Greek word it means ” ability to take more than one ” An operation may exhibit difference behavior in different instance. The behavior depends upon the types of data used in the operation. For… Read More »

pointers in c++

Pointers in c++-:  Pointer is one of the key aspects of c++ language similar to that of  c programming. Pointer offers a unique approach to handle data in c and c++ language. We know that a pointer is a derived data type that refers to another data variable by storing the variable memory address rather… Read More »

inheritance in c++

Inheritance in C++ -: Inheritance is the process by which object one class acquire the properties of object of another class. Inheritance support the concept of hierarchical classification. For example the bird ‘robin’ is the part of the class ” flying bird” which is again a part of the class “bird”. The principle behind this… Read More »

Destructors in c++

Destructors In C++ -: C++ also provide another member function called the destructors that destroyed object when they are no longer required. It is the name implies . It is used to destroy the object that have been created by a constructors. Like the  constructors is a member function whose name is the same as… Read More »

constructor in c++

Constructor In C++ -: In the c++ programming language A constructors is a special member function whose task is to initialize the object of its class. It is a special because its name is the same as the class name. The constructors is involved whenever an object of its associated class is created. It is called… Read More »

classes in c++

Classes In C++ -:  A class is a way to bind the data and its associated function together. It allows the data to be hidden. If necessary from external use. When defining a class we are creating a new abstract data type that we can be treated like any other built in data type. Normally… Read More »

functions in c++

Introduction -: We know that function play an important role in C program development. Dividing a program into function is one of the major principle of top down structured programming. Other advantage of function is that it is possible to reduce the size of a program by calling and using them at different place in… Read More »

operator in c++

Operator In C++ programming Language-: C++ also  support a rich set of built in operator we have already used several of them such as equal to add(+)Minus(-)  multiplication(*) and division(/) operator is a symbol that tells the computer to perform certain mathematics or logical manipulation. operators are used in program to manipulate data and variables.… Read More »

data types in c++

Data Types in C++ -: Data types define the type of data a variable can store for an example an integer variable store integer data and  a character type variable store character data. In other words we can say that the data type store the variable value. In  the C++ programming has 3 type of data… Read More »

tokens in c++

Tokens in C++-:  The token is the smallest individual units in a  program. In other words we can say that the smallest unit in the program called tokens. In the C++ programming language  token has the following types Keywords Identifiers Constant String  Operator  Keywords in C++ -: The keywords implemented specific C++ language features. They are… Read More »