私はCの例でこの構造体を持っています:
typedef struct
{
const char * array_pointers_of_strings [ 30 ];
// etc.
} message;
この array_pointers_of_strings をソート文字列用の新しい配列にコピーする必要があります。アドレスをコピーするだけです。
while ( i < 30 )
{
new_array [i] = new_message->array_pointers_of_strings [i];
// I need only copy adress of strings
}
私の質問は: 文字列のアドレスのみに malloc() で new_array [i] を割り当てる方法は?