私は以下のような簡単なmemcpyをしようとしています。
char *token[32];
char *temp_store[4];
for (i = 0 ; i < 4; i++)
{
memcpy(token[4+i],temp_store[i],strlen(temp_store[i]));
}
トークン配列内に次の値があります。
temp_store[0] = "5";
temp_store[1] = "6";
temp_store[2] = "7";
temp_store[3] = "8";
"5" , "6", "7", "8"
これらの4つの値をそれぞれにコピーしたいと思いtoken[4],token[5],token[6] and token[7]
ます。
ただし、何らかの理由でtoken[]でこれらの値を取得できません。その理由がわかりません。