Which of the following statement is correct about the program given below? #include<iostream.h>
void Tester(float xx, float yy = 5.0);
class CuriousTab
{
float x;
float y;
public:
void Tester(float xx, float yy = 5.0)
{
x = xx;
y = yy;
cout<< ++x % --y;
}
};
int main()
{
CuriousTab objCuriousTab;
objCuriousTab.Tester(5.0, 5.0);
return 0;
}
Correct Answer: The program will report compile time error.