how exactly is the next element of the current element accessed in a linked list?
for some strange reason:

Code:
printf("%s", start->next->custName);
gives me a segmentation fault.

The first element element is skipped, the second one is printed, and then thats when i get the segmentation fault.