void remove_Last(){ struct node *temp = head; while (temp->link->link != NULL) temp = temp->link; free(temp->link); temp->link = NULL;}temp->link를 free해주고temp->link = NULL 해줘도 상관없음 ?
메모리 날리고 널포인터 가리키는 순서면 맞음
rt
ㄱㅅ