Correct syntax to access the static member functions from the main() function is ______________
Correct syntax to access the static member functions from the main() function is ______________ Correct Answer className::functionName();
The syntax in option b must be followed in order to call the static functions directly from the main() function. That is a predefined syntax. Scope resolution helps to spot the correct function in the correct class.