In C++, function overloading is resolved at _______. 

  • runtime 
  • declaration time 
  • compile-time 
  • execution-time
Function overloading allows multiple functions in the same scope to have the same name as long as they have different parameter lists. In C++, the appropriate overloaded function is chosen at compile-time based on the function call's arguments.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *