Solved

In Defining a Member Function Whose Declaration Is in a Class,you

Question 10

True/False

In defining a member function whose declaration is in a class,you use the dot operator to specify that the member function being defined belongs in the class,as
class foo
{
public:
// other members
void output( );
// other members
};
void foo.output( )
{
/* whatever */
}

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions