Re: [Dev-C++] Linked List using Pointers - Not adding word correctly
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
From: Michal M. <mol...@se...> - 2011-04-26 20:19:44
|
if(strcmp(word_after,currNode->word)) should be if(strcmp(word_after,currNode->word) == 0) |