Home » C++ Programming » Objects and Classes

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!