MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of following program? #include using namespace std; class Test{ public: Test() { cout |
| A. | main started |
| B. | main started hello from test() |
| C. | hello from test() main started |
| D. | compiler error: global objects are not allowed |
| Answer» D. compiler error: global objects are not allowed | |