Answer from cs61c-ei (Jing Chen 16669246) for Question 1
struct node {
  char *string; 
  struct node next; 
};
