InterviewSolution
Saved Bookmarks
| 1. |
Explain the static member function. |
|
Answer» A static member function can be invoked using the class name as it exits before class objects comes into existence. It can access only static members of the class. |
|