Lets say I have the following simplified code to loop through a linked list. Each node has a data pointer and next pointer.
1 while (pNode->next != NULL) 2