✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
The following function allocates memory dynamically to store a t_point.
t_point * create_point(int a, int b) {
t_point * p = (t_point *)malloc(sizeof(t_point));
p->x = a;
p->y = b;
return p;
}
Among the following values, which ones are stored in the heap ?