这是我现在有。
void insert(char Table[][81], char Key[81]){
int index;
index = search(Table, Key);
// This is another function used to find an empty 'slot'
// in the table
if(Table[index] == '\0')
Table[index] = Key;
// <-- This is the line that contains some sort of error.
else
printf("ERROR: Key already in Table\n");
}
它抛出的错误是:
不兼容的类型分配给输入从类型“字符*”“的char [81]”时。
我在一个不知如何解决为什么被抛出此错误。 如果有人需要从我的程序的详细信息,以得出一个结论,请让我知道。