How to create a website

  Creating a website Most customers will count on to be in a position to locate your enterprise on the internet. Whether you are promoting your products online, or genuinely want to supply some data about your business and your contact details, having a internet site is nearly essential. It’s a proper thinking to suppose… Read More »

templates in c++

Template introduction -: Template is one of the features added to c++. It is a new concept which enable us to define generic classes, functions and thus provides support for generic programming. Generic programming is an approach where generic types are used as parameters in algorithm so that they work for a variety of suitable… Read More »

managing console input output operations in c++

Managing Console Input Output Operations in C++ :– Every program takes some data as input and generates processed data as output from the familiar input process output cycle. Like this way c++ programming language provide this type facility. We have already use these operator these are the cin  (<<) and cout (<< )operator. C++ support rich… Read More »

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 »