Guest User

Untitled

a guest
Jul 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. int book::Display_all()
  2. {
  3. cout<<head->name<<'\t';
  4. current=head;
  5. while (current->next)
  6. {
  7. current=current->next;
  8. cout<<current;
  9. current=current->next;
  10. }
  11. return 0;
  12. }
Add Comment
Please, Sign In to add comment