Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. int main()
  2. {
  3. LinkedList li;
  4. li.additem(3);
  5. li.additem(5);
  6. li.additem(17);
  7. li.showitem();
  8. li.sum();
  9.  
  10.  
  11. _getch();
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement