Saved Bookmarks
| 1. |
What is called as nesting of member functions? |
|
Answer» Only the public members of a class can be accessed by the object of that class, using dot operator. However a member function can call another member function of the same class directly without using the dot operator. This is called as nesting of member functions. |
|