Category Archives: C++ Language

new features of ansi c++ standard

Introduction -: The ANSI C++ standard add several new features to the original c++ specification. Some are added to provide better control in certain situation other are added for providing convenience to c++ programmers. The important features are here as like 1 . New data type Bool wchar_t 2. New Operators const_cast static_cast dynamic_cast reinterpret_cast… Read More »

introduction to standard template library in c++

Introduction-: We have seen how template can be used to create generic class and function that could extended support for generic Programming. In order to help the c++ user in generic programming.Alexander Stepanov and Meng Lee of Hewlett packard developed a set of general purpose templatized (algorithms) that could be use as a standard approach… 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 »

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 »

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 »