✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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 ?