pabloliva87

Ej9Chapter20C++

Aug 19th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 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.     std::cout << contents << std::endl;
  12.  
  13.     return EXIT_SUCCESS;
  14. }
Add Comment
Please, Sign In to add comment