โช Choose the correct option.
What will be the output of the following program ?
#include
class Try {
int x;
public:
Try();
~Try();
void Show() const;
};
Try::Try() {
x = 25;
}
void Try::Show() const {
cout<< x;
}
int main() {
Try objB;
objB.Show();
return 0;
}