Q. Which of the following is the correct way to define a static member function in C++?
β
Correct Answer: (A)
static void myFunction();
Explanation: The correct way to define a static member function is 'static void myFunction();'.