--- In [email protected], "John" <jm5...@...> wrote: > > if (!strcmp(english, words[i].english))
...and as before, this is the same as: if (!strcmp(&english[0], &words[i].english[0]))
--- In [email protected], "John" <jm5...@...> wrote: > > if (!strcmp(english, words[i].english))
...and as before, this is the same as: if (!strcmp(&english[0], &words[i].english[0]))