✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following sequence of instructions :
t_circle ** circles = (t_circle **)malloc(10 * sizeof(t_circle *));
for (int i = 0; i < 10; i++) {
circles[i] = create_circle(i, i, i + 1);
}
Among the following statements, which ones are true ?