What will be the output of the following program? #include<iostream.h>
class CuriousTabTeam
{
int x, y;
public:
CuriousTabTeam(int xx)
{
x = ++xx;
}
void Display()
{
cout<< --x << " ";
}
};
int main()
{
CuriousTabTeam objBT(45);
objBT.Display();
int *p = (int*)&objBT;
*p = 23;
objBT.Display();
return 0;
}