Which keyword should be used to declare the static member functions?

Which keyword should be used to declare the static member functions? Correct Answer static

The member functions which are to be made static, must be preceded with the keyword static. This indicates the compiler to make the functions common to all the objects. And a new copy is not created with each of the new object.

Related Questions

We can use the static member functions and static data member __________________