Hello! Tell me please:
struct List { char *word; List *next; };
I have such a structure. And I need an array of such structures:
List *list[50]
How do I refer to the word field in this structure?
list[iCount].word у меня ошибку выдает *(list + iCount).word тоже не вариант
Tell me please!