Example & Tutorial understanding programming in easy ways.

Difference between function overloading and operator overloading in C++ ?

Function overloading: 


- Function overloading is defined as we can have more than one version of the same function. 

- The versions of a function will have different signature means that they have a different set of parameters. 

Operator overloading: 

-Operator overloading is defined as the standard operator can be redefined so that it has a different meaning when applied to the instances of a class.

Read More →