Sollicitatievraag bij Garmin

What is function is overloading and Function overriding?

Antwoord op sollicitatievraag

Anoniem

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