Explain the static member function in C++
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.
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.