What will be the out of the following program? #include<iostream.h>
class CuriousTabBase
{
public:
int x, y;
public:
CuriousTabBase(int xx = 0, int yy = 0)
{
x = xx;
y = yy;
}
};
class CuriousTabDerived : public CuriousTabBase
{
private:
CuriousTabBase objBase;
public:
CuriousTabDerived(int xx, int yy) : CuriousTabBase(xx), objBase(yy)
{
cout << this->x << " "
<< this->y << " "
<< objBase.x << " "
<< objBase.y << " ";
}
~CuriousTabDerived()
{ }
};
int main()
{
CuriousTabDerived objDev(11, 22);
return 0;
}
Discussion & Comments