Help for this page

Select Code to Download


  1. or download this
    for (temp = head;
         temp;
    ...
    {
        // Do stuff here with temp
    }
    
  2. or download this
    temp = head;
    while (temp)
    ...
        // Do stuff here with temp
        temp = temp->next;
    }