Cygwin exception in dictionaries function (C) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Cygwin exception in dictionaries function (C)

https://code.sololearn.com/c4eL2oGlDZnb/#c i'm having this error from the last function that i added that should add the word to the dictionary based on his calculated value.

26th Jun 2020, 8:47 AM
Guido Parlatore
Guido Parlatore - avatar
1 Answer
0
There are few warning Guido Parlatore but only one error as of now on line 39... Cur and a both are of type node* type..... = Operator must have both variables on left side and right side as same type. So cur = a is okay... *Cur=*a is also okay as both on left and right side become of type node.. but you are doing cur = *a which is not right as it is node* = node
20th Jul 2020, 6:13 PM
Ketan Lalcheta
Ketan Lalcheta - avatar