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 {
int x;
public:
Crackexams(int xx, float yy) {
cout<< char(yy);
}
};
int main() {
Crackexams *p = new Crackexams(35, 99.50f);
return 0;
}

A. 99
B. 99.5
C. ASCII value of  99
D. Garbage Value