드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
게시물ID : programmer_10711짧은주소 복사하기
작성자 : Jawbone★
추천 : 0
조회수 : 350회
댓글수 : 1개
등록시간 : 2015/06/02 14:02:40
void removde_title(char title[])
{
struct Node* temp = head;
if(!strcmp(title, temp->title))
temp=temp->next;
else
{
while(strcmp(title, temp->next->title))
{
temp=temp->next;
}
struct Node* temp2 = temp->next;
temp->next = temp2->next;
free(temp2);
}
free(temp)
}
title로 값을 받아서 그 title이 들어있는 노드를 삭제하는 것인데 자꾸 에러가 납니다. 힌트라도 주시면 감사하겠습니다.
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.