Answer from cs61c-am (Michael Moeng 16464697) for Question 2
char str[] = "input";
struct string_node *temp = 
   (struct string_node *)malloc (sizeof(*head));
head->next = temp;
temp->name = &str[];
temp->next = NULL;
free ((void*) temp);
