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