#include #include #include #define MAXLINE 100 typedef char DATA; /* will use char in examples */ struct linked_list { DATA d; struct linked_list *next; }; typedef struct linked_list ELEMENT; typedef ELEMENT * LINK; int count(LINK head); int count_it(LINK head); void print_list(LINK head); LINK string_to_list(char s[]);