โช Choose the correct option.
What will be the output of the following program ?
#include
class Crackexams {
public:
Crackexams() {
cout<< "Hello";
}
~Crackexams() {
cout<< "India";
}
};
int main() {
Crackexams obj;
return 0;
}