我有麻烦分配中一个字符串的字符数组(I am having trouble assigning a

2019-07-02 15:47发布

这是我现在有。

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]”时。

我在一个不知如何解决为什么被抛出此错误。 如果有人需要从我的程序的详细信息,以得出一个结论,请让我知道。

Answer 1:

您不能分配数组,但你可以使用strcpy()memcpy()代替:

if (Table[index][0] == '\0')
    memcpy(Table[index], Key, sizeof(Key));
else
    printf("ERROR: Key already in Table\n");


文章来源: I am having trouble assigning a char string to a char array