Tell me what are static member functions?

Submitted by: Muhammad
Static member functions are used to maintain a single copy of a class member function across various objects of the class. Static member functions can be called either by itself, independent of any object, by using class name and :: (scope resolution operator) or in connection with an object.
Submitted by: Muhammad

Read Online C++ Virtual Functions Job Interview Questions And Answers