Guest User

Untitled

a guest
May 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. a = 100;
  4. p = &a;
  5. cout << "variable a: " << a << endl;
  6. cout << "variable *p: " << *p << endl;
  7.  
  8. funcion(&a);
  9.  
  10. cout << "variable a: " << a << endl;
  11. cout << "variable *p: " << *p << endl;
  12.  
  13. cin.get();
  14. return 0;
Add Comment
Please, Sign In to add comment