#include <iostream> using namespace std; class TheClass { public: TheClass() {} ... void methodPub() {cout << "I did it!!!";} }; int main(void) { void (* realFunction)() = &TheClass::methodPub; realFunction(); return 0; }
Login in to like
Login in to comment
or Read more about C++ Quizzes
Login in to like
Login in to comment