3. Write a C program named simple_hash.c to create a hash table of tokens/words. The structure of the hash table will be as follows: the hash table has 26 entries, one for each character ‘A’ to ‘Z’. For each entry there will be an array of length 100 containing a list of tokens that all start with the same letter. For simplicity, you do not need to worry about expanding the buffer if more
OR
OR