Quote Originally Posted by Programmer_P
because the condition (conductor->next != 0) will never be met, because its always going to have a NULL value...
That's not true if your list has more than one node...

Code:
// Create a linked list that is 3 nodes in length
node* conductor = new node;
node* second = new node;
node* third = new node;

conductor->next = second;
second->next = third;
third->next = NULL;

while(conductor->next != NULL)
    ...