✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class A
{
int a, b, c;
public: A () {a = 1; b = 2; c = 3; };
int get_a () {return a; }
int get_c () {return c; }
int get_b () {return b; }
};
A * d = new A ();
Як звернутися до змінної с ?
(C++)