Advertisement
rornoanparn

Untitled

Feb 24th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. typedef int infotype;
  2. typedef struct elmlist *address;
  3.  
  4. struct elmlist{
  5.     infotype info;
  6.     address prev;
  7.     address next;
  8. };
  9. struct List{
  10.     address first;
  11.     address last;
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement