Advertisement
Felanpro

random fun

May 9th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6.  
  7. int main()
  8. {
  9.     string *ps1;
  10.     string hey = "Hey";
  11.     ps1 = &hey;
  12.  
  13.     cout << ps1 << endl;
  14.     cout << *ps1 << endl;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement