✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
The following sequence of instructions declares and initializes an array of 2 t_point.
t_point points[2];
t_point a = {1, 2};
t_point b = {3, 4};
points[0] = a;
points[1] = b;
Among the following statements, which ones are true ?