struct NODE { char* item; struct NODE* next; }; typedef struct NODE Node; Node* LinkedList = NULL;
//Insert Function
void insert(