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 Crackexams {
public:
void Try(int x = 15) {
x = x/2;
if(x > 0) {
Try();
}
else {
cout<< x % 2;
}
}
};
int main() {
Crackexams objIB;
objIB.Try();
return 0;
}

A. 1
B. 2
C. 15
D. Infinite loop