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