MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is true about the following program #include class Test { public: int i; void get(); }; void Test::get() { std::cout i; } Test t; // Global object int main() { Test t; // local object t.get(); std::cout |
| A. | compiler error: cannot have two objects with same class name |
| B. | compiler error in line "::t.get();" |
| C. | compiles and runs fine |
| Answer» D. | |