我无法将char字符串分配给char数组

时间:2012-10-25 21:00:46

标签: c arrays char assign

这就是我现在所拥有的。

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 *'分配类型'char [81]'时,

不兼容的类型。

我对如何修复或为什么抛出此错误感到茫然。如果有人需要我的程序中的更多信息来得出结论,请告诉我。

1 个答案:

答案 0 :(得分:4)

您无法分配数组,但可以改为使用strcpy()memcpy()

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