Advertisement
Guest User

Untitled

a guest
Sep 14th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. typedef char DATA;
  5.  
  6. struct linked_list {
  7.        DATA d;
  8.        struct linked_list *next;
  9.        };
  10.        
  11. typedef struct linked_list ELEMENT;
  12. typedef ELEMENT *LINK;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement