Guest User

Untitled

a guest
Jan 15th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. struct list
  2. {
  3.     struct link *front;
  4.     struct link *back;
  5. };
  6.  
  7. struct link
  8. {
  9.     struct list *list;
  10.     struct link *prev;
  11.     struct link *next;
  12.     int data;
  13. };
Add Comment
Please, Sign In to add comment