rornoanparn

decla

Feb 26th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 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. };
Advertisement
Add Comment
Please, Sign In to add comment