Answer from cs61c-ep (Vivian Chong 15826235) for Question 1
struct node {
  char *string;
  struct node *next;
};
