ポインターと memcpy を使用します。
void * memcpy ( void * destination, const void * source, size_t num );
長さ n の配列 A を配列 B にコピーするとします。
memcpy (B, A, n * sizeof(char));
これは C++ よりも C に近く、文字列クラスには使用できるコピー機能があります。
size_t length;
char buffer[20];
string str ("Test string...");
length=str.copy(buffer,6,5);
buffer[length]='\0';
完全なコードを含むより具体的なサンプルを次に示します。
#include <stdio.h>
#include <string>
#include <string.h>
#include <iostream>
using namespace std;
int main()
{
string s("Hello World");
char buffer [255];
void * p = buffer; // Or void * p = getPosition()
memcpy(p,s.c_str(),s.length()+1);
cout << s << endl;
cout << buffer << endl;
return 0;
}
詳細が必要な場合はお知らせください