This exercise requires you to write C code that manages functions for a hashmap.
The provided file hashmap.c includes the following functions:
main( ) Contains the tests to exercise the solution.
insert( ) - inserts a key / value pair into the hashmap using symbol as the key
printHashtable( ) - print all the key / value pairs for the hash table
hash( ) - uses the given key to perform a hash function which computes the index (bin) into the hash table
lookup( ) - returns the hash table bin entry structure for a given key
drop( ) - removes the hash table bin entry structure for a given key and frees up memory
makeAs always, complete the Activity Journal, including your estimated time, your plan, your actual time, and observations.