InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by “this” pointer? |
|
Answer» In C++ every object can access its address through this pointer, in other WORDS, it holds the address of the current object or POINTS to the current object. |
|