Re: [Dev-C++] C++ Linked Lists and Add After
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
From: Michal M. <mol...@se...> - 2011-04-24 20:51:32
|
Dne 24.4.2011 20:23, Jordan Burnam napsal(a): > if(currNode -> word == a_word) You cannot compare strings with ==, you'll have to use strcmp() function like it is already used inside the assign_list() function. |