pabloliva87

Ej1Chapter20C++

Aug 19th, 2013
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main(int argc, char const *argv[])
  4. {
  5.     char s1[] = "There is a snake in my boot!";
  6.  
  7.     std::cout << s1 << std::endl;
  8.  
  9.     std::char_traits<char>::copy(s1 + 12, s1 + 11, 5);
  10.  
  11.     std::cout << s1 << std::endl;
  12.  
  13.     return 0;
  14. }
Add Comment
Please, Sign In to add comment