- 1
What is function overloading and deafault arguments in c++
C++
1 Resposta
0
Function overloading => same function name but different implementation .
Default arguments => setting default value to local variable of a function . this will get override if we pass value to the parameter . and will be used default value in case we don't pass value to it.