I'm trying to do some testing with member function pointer. What is wrong with this code. this giving compile error for bigCat.*pcat();
class cat{
public:
void walk(){
printf("cat is walking \n");
}
}
int main(){
cat bigCat;
void (cat::*pcat)();
pcat = &cat::walk;
bigCat.*pcat();
}