SHOW:
|
|
- or go back to the newest paste.
| 1 | #include <iostream> | |
| 2 | ||
| 3 | - | int main(int argc, char const *argv[]) |
| 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 0; |
| 11 | + | return EXIT_SUCCESS; |
| 12 | } |