Next: Remove trailing spaces Up: Idiomatic C Previous: Skip white space

Walking a linked list

   for (ptr= head;  ptr != NULL;  ptr= ptr->next)  (etc)

Note: arguably a while is more descriptive.



Next: Remove trailing spaces Up: Idiomatic C Previous: Skip white space


maspjw@
Tue Sep 27 15:29:34 BST 1994