Advertisement
Dawid_PAr

Untitled

Aug 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. void clean()
  2. {
  3. ElementL* temp = this->pierwszy;
  4. while(temp != NULL)
  5. {
  6. ElementL* temp1 = temp;
  7. delete temp1;
  8. temp = temp->next;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement