Answer from cs61c-an (Ben Weil 16819970) for Question 1
struct node {
   char *str;
   struct node *next;
}
