What will be the output of the following program ?

		
					

Loading

โœช 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;
}

A. 25
B. Garbage Value
C. Run Time Error
D. Compile time Error