Explain static member functions?

Submitted by: Murtaza
A static function can have an access to only other static members (functions or variables) declared in the same class.
A static member function can be called using the class name instead of its objects.
E.g. classname :: functionname;
Submitted by: Murtaza

Read Online C++ Inline Function Job Interview Questions And Answers