InterviewSolution
Saved Bookmarks
| 1. |
Which operator a pointer object of a class uses to access its data members and member functions?(a) .(b) ->(c) :(d) :: |
|
Answer» Correct option is (b) -> For explanation: ->(arrow operator) is used by a pointer object to access members of its class. |
|