Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- struct Elem {
- struct Elem *prev, *next;
- int v;
- };
- struct Elem *InitDoubleLinkedList()
- {
- struct Elem *x;
- x->v = -777777777;
- x->prev = x;
- x->next = x;
- return x;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement