Which is correct syntax to access the static member functions with class name?
Which is correct syntax to access the static member functions with class name? Correct Answer className :: functionName;
The scope resolution operator must be used to access the static member functions with class name. This indicates that the function belongs to the corresponding class.