✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class A {
public:
A () {ptr = new char [size];
Init (); }
~ A () {if (ptr) delete [] ptr; }
char * ptr; };
відбудеться виняткова ситуація, чи буде втрачена пам'ять при відкат по стеку?
(C++)