void call(int);
class abi
{
public :
void display()
{
call(10);
}
void call(int)
{

cout" c++" ;
}
};
int main()
{
abi s;
s.display();
}


Posted on by