Answer from cs61c-bd (Dae-hyeon Wi 17782249) for Question 1
struct node{
    char *word;
    struct node *next;
};

