How can I pass a member function where a free function is expected?
The question is the following: consider this piece of code: #include <iostream> class aClass { public: void aTest(int a, int b) { printf("%d + %d = %d", a, b, a + b)...