Tutorial no.4 - Polymorphism, Function Overloading by Khezer Mustafa

  • 9 years ago
Function Overloading
C Language doesn’t support function overloading while C++ support
Multiple functions with the same name in same scope
Functions must differ from each other types and no. of arguments
You can not overload function declarations that differ only by return type

Recommended