Write a program to call member functions of class in the main function using pointer to object and pointer to member function.
}
};
void
main()
{
abc o1,*p;
p=&o1;
p->seta();
p->printa();
}