#include <exception> struct A { void Foo() { throw std::exception(); } }; void Test() { A *a = new A(); a->Foo(); delete a; }
Login in to like
Login in to comment
or Read more about C++ Quizzes
Login in to like
Login in to comment