char의 포인터를 char의 포인터로 잡고있는 struct의 필드를 char와 비교하려고하는데 비교가 작동하지 않습니다.struct와 포인터를 비교하는 방법
typedef struct node{
char * word;
struct node * next;
int occurrence;
}No;
aux = list;
while(aux != NULL){
if(aux->word == token)
{
new_node->occurrence = new_node->occurrence+1;
exist = 0;
}
aux = aux->next;
}
코드가 조금 더 필요합니다. 'list' 란 무엇입니까? –