Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. struct TREE
  2. {
  3. int a;
  4. struct TREE *left;
  5. struct TREE *right;
  6. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement