Question Question Here is the start of a class declaration: style=”color:rgb(45,59,69);”>class foo { public: void x(foo f); void y(const foo f); void z(foo f) const; … Which of the three member functions can alter the PRIVATE member variables of the foo object that activates the function?: style=”color:rgb(45,59,69);”>class foo { public: void x(foo f); void y(const foo f); void z(foo f) const; … Which of the three member functions can alter the PRIVATE member variables of the foo object that activates the function?
Question