class Key
{
};
Key& make_key()
{
return Key();
}
Key& key = make_key();
Key key1 = make_key();
Key make_key()
{
return Key();
}
Key& key3 = make_key();
Key key4 = make_key();
Key& make_key()
{
Key k;
return k;
}
Key& key5 = make_key();
Key key6 = make_key();
Key make_key()
{
key k;
return k;
}
key& key7 = make_key();
Key key8 = make_key();
Can somebody please explain these scenarios.. not able to understand ... Thankyou

New Topic/Question
Reply




MultiQuote




|