int
C では、配列のリストから配列を選択するためのカウンターとしてan を使用できるかどうか疑問に思っています。そうでない場合、どのようにこれを回避することをお勧めしますか? 申し訳ありませんが、コードはそれをよりよく説明するかもしれません:
編集:申し訳ありませんが、inputchar は単一の文字であると明確にする必要がありました。inputchar が配列内のいずれかの単語の文字であるかどうかを確認しようとしています。
int i;
char word0[] ={'c','a','c','h','e'};
char word1[] ={'i','n','t','e','l'};
char word2[] ={'e','t','h','e','r','n','e','t'};
char word3[] ={'g','i','g','a','b','y','t','e'};
char word4[] ={'l','i','n','u','x'};
for (input = 0;input<i;input++)
{
if (inputchar==word(i)[input] /*this is the problem here, i want to use the int (i) to chose the array, i is randomized before this in the program */
{
w(i)[input]=inputchar;
lc++;
printf("You guessed correct! continue on word master");
}
}