C Program To Implement Dictionary: Using Hashing Algorithms

typedef struct Node { char* key; char* value; struct Node* next; } Node;