This is what I have now.
void insert(char Table[][81], char Key[81]){ int index; index = search(Table, Key); // This is another function used to
You cannot assign arrays but you can use strcpy() or memcpy() instead:
if (Table[index][0] == '\0') memcpy(Table[index], Key, sizeof(Key)); else printf("ERROR: Key already in Table\n");