Answer from cs61c-eb (Dae-Yeon Kim 16568138) for Question 1
struct node
{
   char *string;
   struct node *strings;
}
