Given the info below, how will you access the name of the third terminal node in the linked-list? Assume head is pointing to the first terminal node and there are at least 3 terminals in the linked-list.
struct Terminal {
char name[30];
char location[32]; struct Terminal* next;} *head;