Answer from cs61c-ar (Albert Chung 15826273) for Question 1
struct tnode  {
    
    char *word;
    struct tnode *next;

};


    
