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 Logic {
public:
Logic() {
cout<< "Hello";
}
~Logic() {
cout<< "India";
}
};
int main() {
Logic obj;
return 0;
}

A. Hello
B. India
C. Logic
D. Compile Time Error