✪ Choose the correct option.
What will be the output of the following program?
#include
class Crackexams {
int x;
public:
Crackexams(int xx, float yy) {
cout<< char(yy);
}
};
int main() {
Crackexams *p = new Crackexams(35, 99.50f);
return 0;
}