✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
void reverse(t_ht_list *p_list){ t_cell *temp; temp = p_liste->tail; p_liste->tail= p_liste->head; p_liste->head= temp; return;}
You are told that this allows the list to be browsed in the opposite direction to its initial order.....true or false?