Which of the following statements is correct about the program given below?
class Bix{ public: static void MyFunction();};int main(){ void(*ptr)() = &Bix::MyFunction; return 0; }
Answer: Option D
Explanation: