Advertisement
Guest User

Untitled

a guest
Oct 14th, 2014
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. class C {
  2. public:
  3.     intx;
  4.     C() {x=8;}
  5.     void f(int& a) const {a=4;}
  6.     void m() f(x);}
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement