Guest User

Untitled

a guest
Jun 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include "ll.h"
  2.  
  3. int main(void)
  4. {
  5. struct ll *a = ll_create();
  6. struct ll *b = ll_create();
  7. a->next = b;
  8. b->next = a;
  9.  
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment