Help for this page
for (temp = head; temp; ... { // Do stuff here with temp }
temp = head; while (temp) ... // Do stuff here with temp temp = temp->next; }