Robert observed a strange behavior in his program where the default value of a function argument inside a member function of a class wasn't recognized. Where might he have defined the default value to cause this issue?

  • In a Separate Header File
  • In a Separate Source File
  • Inside the Class Declaration
  • Inside the Function Definition
Robert might have defined the default value of the function argument inside the class declaration. In C++, default values for function arguments should be specified in the function declaration, not in the class declaration. Placing them in the class declaration would cause issues with recognition.
Add your answer
Loading...

Leave a comment

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