No Image

C++ Virtual Function

February 11, 2010 muthu 0

C++ virtual function is a member function of a class, whose functionality can be over-ridden in its derived classes. The whole function body can be […]

No Image

C++ Tutorial – friend

February 11, 2010 muthu 0

Any data which is declared private inside a class is not accessible from outside the class. A function which is not a member or an […]

No Image

C++ Tutorial – class

February 11, 2010 muthu 0

A class in C++ is an encapsulation of data members and functions that manipulate the data. The class can also have some other important members […]