Saved Bookmarks
| 1. |
Which is the correct interpretation of the member function call from an object, object.function(parameter);(a) object.function(&this, parameter)(b) object(&function,parameter)(c) function(&object,¶meter)(d) function(&object,parameter)I had been asked this question during a job interview.My question is from This Pointer topic in portion Assigning Object, Pointer to Objects, Passing and Returning Object of Object Oriented Programming |
|
Answer» Correct ANSWER is (d) function(&object,parameter) |
|