What is function is overloading and Function overriding?
Sigiloso
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.