Question

Q2: Inside a function definition for a member function of an object with data member x, which of the following is not equivalent to this->x:
a. *this.x
b. (*this).x
c. x
d. None of the above are equivalent.

Answer

This answer is hidden. It contains 9 characters.