Thursday, February 4, 2010

What is the difference between overloading and overriding in C++

This is one of the most common question asked in C++ interview.

Overloading : Function overloading ( No change in input parameter or argument)
Overriding : Virtual Function ( When derived class override the base class implementation)

2 comments: