Answer from cs61c-av (Kenneth Wong 16192104) for Question 2
/*
singly linked list of strings with a head *ListNode that keeps track of the front of the List.
*/

struct ListNode *temp;

temp = *head;
head->str = *name;
head->next = *temp;




