Answer from cs61c-cl (Hiroki Terashima 16032281) for Question 1
struct node {
   char *item;
   struct node *next;

};
