(memcpy の代わりに) C++ コピー アルゴリズムを使用して文字列リテラルをコピーしていますが、理由はわかりませんが、セグメンテーション違反が発生しています。コードは次のとおりです。
#include <iostream>
#include <cstring>
#include <stdio.h>
using namespace std;
int main(int argc, char *argv[]) {
// if using copy with regular pointers, there
// is no need to get an output iterator, ex:
char* some_string = "this is a long string\n";
size_t some_string_len = strlen(some_string) + 1;
char* str_copy = new char(some_string_len);
copy( some_string, some_string + some_string_len, str_copy);
printf("%s", str_copy);
delete str_copy;
return 0;
}