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