void call(int);
class UCL
{
public :
void display()
{
call(10);
}
void call(int)
{
cout" PSG" ;
}
};
int main()
{
UCL s;
s.display();
}


Posted on by