Predict the output:
void call(int);
class shiv
{
public :
void display()
{
call(10);
}
void call(int)
{

cout"happy shivratri" ;
}
};
int main()
{
shiv s;
s.display();
}

Posted on by