MCQOPTIONS
Saved Bookmarks
| 1. |
#include <iostream>using namespace std;class LFC{ private: int x,y; public: void LFC(int a,int b) { x=a; y=b;}};int main(){ LFC s; return 0;}17.What will be the output of this program? |
| A. | Compile Time Error |
| B. | Object Created. |
| C. | Run Time Error |
| D. | Cannot be predicted |
| Answer» C. Run Time Error | |