View difference between Paste ID: SNRVDKgp and 7Qrcz1F1
SHOW: | | - or go back to the newest paste.
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::char_traits<char>::copy(s1 + 12, s1 + 11, 5);
8
9
	std::cout << s1 << std::endl;
10
11
	return 0;
12
}