struct node nptr,*sptr; /*pointers for linked list/ for(nptr=sptr;nptr;nptr=nptr->next) { free(nptr); }
Releases memory from a linked list. Which of the following accurately describes how it will work?
Reveal answer
Fill a bubble to check yourself