No Image

scanf

February 14, 2010 muthu 0

Though scanf and printf are the functions of legacy C language, these functions are being used extensively even in C++ programs. The programmers who have […]

No Image

C++ Copy constructors

February 14, 2010 muthu 0

Copy constructor is a constructor function with the same name as the class used to make deep copy of objects. There are 3 important places […]

No Image

C++ Overloading Operators

February 14, 2010 muthu 0

   C++ overloading is the mechanism by which the language standard operators are used for customized operations of the classes. For example if we are […]

No Image

C++ Virtual destructors

February 14, 2010 muthu 0

   Ask any programmer, he’ll immediately reply saying “A destructor is a member function of a class, which gets called when the object goes out […]

No Image

C++ Functions

February 11, 2010 muthu 0

A function is written in C++ when there’s a certain chunk of code that will be executed more than once, or maybe even just to […]

No Image

C++ Pointers

February 11, 2010 muthu 0

We can define a variable in C++ to store a memory address. A pointer in C++ is said to “point to” the memory address that […]