Beginner C++
Q28 / 100

What is the this pointer?

Correct! Well done.

Incorrect.

The correct answer is B) A pointer to the current object instance

B

Correct Answer

A pointer to the current object instance

Explanation

this is an implicit pointer available in non-static member functions, pointing to the object on which the method is called.

Progress
28/100