Differentiate between function overloading and function overriding in C++?
1.Function Overloading is when multiple function with same name exist in a class. Function Overriding is when function have same prototype in base class as well as derived class.
2.Function Overloading can occur without inheritance. Function Overriding occurs when one class is inherited from another class.
3.Overloaded functions must differ in either number of parameters or type of parameters should be different. In Overridden function parameters must be same.
For more detail you can visit below link where you get more information about function overloading and overriding in c++ https://googleweblight.com/i?u=https://www.geeksforgeeks.org/function-overloading-vs-function-overriding-in-cpp/&hl=en-IN