A(n) __________ is a special built-in pointer that is available to a class's member functions..
a. this pointer
b. &constructor pointer
c. ~destructor *ptr
d. overload operator, ->
e. None of these
a. this pointer
Computer Science & Information Technology
You might also like to view...
A hyperlink is a connection from one slide to another in the same presentation, but NOT to a slide in another presentation
Indicate whether the statement is true or false
Computer Science & Information Technology
What is y after the following for loop statement is executed?
``` int y = 0; for (int i = 0; i < 10; ++i) { y += 1; } ``` A. 9 B. 10 C. 11 D. 12
Computer Science & Information Technology