rornoanparn

Untitled

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