Guest User

Untitled

a guest
Oct 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <cstdio>
  2. #include <iostream>
  3. using namespace std;
  4. struct node
  5. {
  6.     int val;
  7.     node *l;
  8.     node *r;
  9. };
  10. int main()
  11. {
  12.     node *A;
  13.     A->val = 6;
  14.     cout<<"wartosc to "<<A->val<<endl;
  15.     return 0;
  16. }
Add Comment
Please, Sign In to add comment