InterviewSolution
Saved Bookmarks
| 1. |
Write the names of all member functions accessible from the object of class author. |
|
Answer» Member functions that can be accessed are: 1. public member functions of branch have_data(); give_data(); 2. public member functions of author: getdata(); putdata(); |
|