Guest User

Untitled

a guest
Dec 8th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. std::string Cat = "Sisko";
  2. std::string *ptrCat = &Cat;
  3. std::string **ptrCat2 = &ptrCat;
  4.  
  5. cout << (**ptrCat2).size() <<endl;
Add Comment
Please, Sign In to add comment