pabloliva87

Ej1Chapter20C++

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