What will be the output of the following program?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?

#include 
void Tester(int xx, int yy = 5);
class Crackexams {
int x;
int y;
public:
void Tester(int xx, int yy = 5){
x = xx;
y = yy;
cout<< ++x % --y;
}
};
int main() {
Crackexams obj;
obj.Tester(5, 5);
return 0;
}

A. 0
B. 1
C. 2
D. Garbage value