Please can someone help me to match the right questions?... typedef struct ListN
ID: 3804582 • Letter: P
Question
Please can someone help me to match the right questions?...
typedef struct ListNode {struct ListNode *next; struct ListNode *prev; void *value;} List Node; typedef struct List {int count; ListNode *first; ListNode *last;} List; List* myList points to a non-circular list that consists of five nodes. Match the code to the meaning. points to the value of the third node. null pointer points to the value of the fourth node. points to the value of the first node. points to the fourth node. points to the first node. points to the value of the second node. points to the fifth node. points to the third node.Explanation / Answer
myList->first->next->value G.Points to the value of second node
myList->last->prev->prev I.Points to the third node
myList->last->prev->next H.Points to the fifth node
myList->first->prev B.null pointer
ListNode* cur=myList->first->next->next
cur->prev->prev->value D.Points to the value of first node