MCQOPTIONS
Saved Bookmarks
| 1. |
#include <iostream>using namespace std;class LFC{ int x; public: LFC(int xx, float yy) { cout<< char(yy); }};int main(){ LFC *p = new LFC(35, 99.50f); return 0;}12.What is the output of this program? |
| A. | The program will print the output find. |
| B. | The program will print the output course. |
| C. | The program will print the output findcourse. |
| D. | The program will report compile time error. |
| Answer» D. The program will report compile time error. | |