✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following sequence of instructions :
t_square ** squares = (t_square **)malloc(10 * sizeof(t_square *));
for (int i = 0; i < 10; i++) {
squares[i] = create_square(0 , i + 1, i + 1);
}
Among the following statements, which ones are true ?