MCQOPTIONS
Saved Bookmarks
| 1. |
#include <iostream>using namespace std;class LFC{ public: LFC() { cout<< "find"; } ~LFC() { cout<< "course"; }};int main(){ LFC obj; return 0;}13.What is the output of this program? |
| A. | The program will print the output 50. |
| B. | The program will print the output Garbage-value. |
| C. | The program will report compile time error. |
| D. | The program will report runtime error. |
| Answer» D. The program will report runtime error. | |