↧
Function overloading – C++
In this tutorial we will try to explain what the term function overloading is. A function is overloaded when same name is given to different function. However, the two functions with the same name will...
View ArticleFunction overloading by return type in C++
Commercial modern day languages often get criticized because they don’t support function overloading by return type. That is to say, functions cannot be distinguished by return type. For example: int...
View Article