Answer from cs61c-cb (minh uyen nguyen 16765774) for Question 2
/* create a new node of type (struct list *) by using function newNode */

new= newNode();
new->str = strcpy(new->str , name);
new->next = head;
head = new;
