Hash function issue - adding functionality
问题 I tried adding functionality to the djb2 hash function, but it doesn't appear to like the changes. Specifically, I'm trying to include a loop that converts words (strings) to lower case. It throws the following two errors: Incompatible integer to pointer conversion assigning to char * from int Cannot increment value of type char *[45] Note that in the original code *str++ appeared in the while loop. This is my first hash table, and I'm rather shaky on pointers. Any insight on where I've gone