Program to create a lexicographical dictionary
This program was written in C to create a dictionary of sorted words. Users can add, modify, delete and update the dictionary as per requirements without worrying about redundancy or inconsistency. The create-dict.h file provides clients with a module to be eligible to use functions and the create-dict.c file provides the function definitions. A test file, create-dict-test.c has been created to test the functionality of the code. Code Features: -Data Abstraction -Modularization -Inheritance -Usage of structures and pointers -Recursive data definitions -Linked Lists