pabloliva87

Ej7Chapter20C++

Aug 30th, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main(void)
  4. {
  5.     std::string* s1 = new std::string("HolaMundo");
  6.  
  7.     const char* contents = s1->data();
  8.  
  9.     delete s1;
  10.  
  11.     s1 = new std::string("ChauMundo");
  12.  
  13.     std::cout << contents << std::endl;
  14.  
  15.     return EXIT_SUCCESS;
  16. }
Add Comment
Please, Sign In to add comment