Advertisement
Dawid_PAr

Untitled

Aug 19th, 2019
121
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. ElementL* temp1 = temp->next;
  5. while(temp != NULL)
  6. {
  7. delete temp;
  8. temp = temp1;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement