NOTE: This submission was received late. The deadline was Thu Jun 24 11:00:00 2004 but the submission was not received until Thu Aug 12 15:42:18 2004. We will grade the last on-time submission for this quiz. Your Answer for Question 1: struct LList { char* myString; struct LList* next } Your Answer for Question 2: new_node = (struct LList*) malloc(sizeof(struct LList)); strcpy(new_node->myString, name); new_node->next = head; head = new_node; Your Answer for Question 3: - Your unique submission ID is quiz1-2-2-cs61c-bw-1092350538-2508.