Guest User

Untitled

a guest
Nov 23rd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1.  
  2. int mA = 5;
  3.  
  4.  
  5. int a () {
  6.  
  7.     return mA;
  8. }
  9.  
  10. const int a () {
  11.  
  12.     return mA;
  13. }
  14.  
  15. void b (int a) {
  16.  
  17.     cout << a << endl;
  18. }
Add Comment
Please, Sign In to add comment