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:
int a;
float b;
void TryFunction(int a, float b, float c = 100.0f) {
cout<< a % 20 + c * --b;
}
};
int main() {
Crackexams obj;
obj.TryFunction(20, 2.000000f, 5.0f);
return 0;
}

A. 0
B. 5
C. -5
D. 100