Guest User

Untitled

a guest
Jan 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. class X
  2. {
  3. private: int y;
  4.  
  5. friend int* z(X&x) { return &x.y; };
  6.  
  7. ...
  8.  
  9. int * p = z(x);
  10. *p = 5;
Add Comment
Please, Sign In to add comment