Answer from cs61c-ew (Joo-Rak Son 16103505) for Question 2
struct node newnode = { name, head->next };

*(head->next) = newnode;

