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