Answer from cs61c-ep (Vivian Chong 15826235) for Question 2
struct node new = (struct node)malloc(sizeof(struct node));
new->string = name;
new->next = head->next;
head->next = new;
