✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider this code:
Person P1(2);
P1.children_list[0]= "Aryan";
P1.children_list[1]= "Siya";
Person P2 = P1;
P2.children_list[0]= "Ananya";
What will be the content of P1.children_list[0] after this?