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(float xx, float yy = 5.0);
class Crackexams {
float x;
float y;
public:
void Tester(float xx, float yy = 5.0){
x = xx;
y = yy;
cout<< ++x % --y;
}
};
int main() {
Crackexams objCrackexams;
objCrackexams.Tester(5.0, 5.0);
return 0;
}

A. 0
B. 1
C. 2
D. Compile Time Error