Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. while (act_a != NULL)
  2. {
  3. next_a = act_a->next;
  4. free(act_a);
  5. act_a = next_a;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement