C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 56 Topic 6 Discussion

C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 56 Topic 6 Discussion

CPA-21-02 Exam Topic 6 Question 56 Discussion:
Question #: 56
Topic #: 6

What happens when you attempt to compile and run the following code?

#include

#include

using namespace std;

class myClass : public exception

{

virtual const char* what() const throw()

{

return "My exception.";

}

} obj;

int main () {

try

{

throw obj;

}

catch (exception& e)

{

cout << e.what() << endl;

}

return 0;

}


A.

It prints: My exception.


B.

It prints: 0


C.

It prints: 1


D.

Compilation error


Get Premium CPA-21-02 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.