if we have to refer a member lets say buf of our string class-02950
if we have to refer a member, lets say buf, of our string class, we can write it __________.
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Lecture No.33 - Quiz No.1.
if we have to refer a member, lets say buf, of our string class, we can write it __________.
buf ;
this->buf ;
(*this).buf ;
None of the given