Which of the following statement is correct about the program given below? #include
class CuriousTab
{
int x;
public:
CuriousTab(short ss)
{
cout<< "Short" << endl;
}
CuriousTab(int xx)
{
cout<< "Int" << endl;
}
CuriousTab(char ch)
{
cout<< "Char" << endl;
}
~CuriousTab()
{
cout<< "Final";
}
};
int main()
{
CuriousTab *ptr = new CuriousTab('B');
return 0;
}
Correct Answer: The program will print the output Char .