Which is the correct syntax for declaring static data member?

Which is the correct syntax for declaring static data member? Correct Answer static dataType memberName;

The syntax must firstly be mentioned with the keyword static. Then the data type of the member followed by the member name should be given. This is general form of declaring static data members.

Related Questions

Which among the following is the correct syntax to access static data member without using member function?
We can use the static member functions and static data member __________________