Garmin interview question

What is function is overloading and Function overriding?

Interview Answer

Anonymous

4 Jul 2019

Function overloading is a feature in C++ where two or more functions can have the same name but different parameters.Function overriding is a feature that allows us to have a same function in child class which is already present in the parent class.

1