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

Understanding Unicode

February 14, 2010 muthu 0

The computers understand everything by numbers. Each character is represented as a number, which is finally drawn as a character in the screens.It has been […]

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 […]