Advertisement
reellearning

Contact Linked List App

Jul 23rd, 2012
1,717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. /*
  2.  * ContactListApp.cpp
  3.  *
  4.  *  Created on: Jul 23, 2012
  5.  *      Author: Derek
  6.  */
  7.  
  8.  
  9. #include "ContactList.h"
  10.  
  11. int main()
  12. {
  13.     Contact* c1 = new Contact("Tom");
  14.     Contact* c2 = new Contact("Bob");
  15.     Contact* c3 = new Contact("Sally");
  16.  
  17.     ContactList* cl1 = new ContactList();
  18.  
  19.     cl1->addToHead(c1);
  20.     cl1->addToHead(c2);
  21.     cl1->addToHead(c3);
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement