פיתרון תרגיל 8 .
void print_list(LIST *top) { LIST *ptr; if(!empty(top)) { for(ptr=top; ptr->next!=NULL; ptr=ptr->next) printf("%d ", *((int*)ptr->info)); printf("\n"); } }