Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void deletefromfront(intList* i)
- {
- if(i->nofitems==0)
- {
- cout<<"Cant delete-no items";
- return;
- }
- else
- {
- Listitem* item=i->firstitem;
- delete(item);
- item=NULL;
- i->nofitems--;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment