短い答え: '\0' 文字が各文字列を終了することを考慮していないため、これを使用することはできません。
より長い答え: そのような構造体を変更して、柔軟性を高めます:
struct myStruct {
struct myString *text;
}
struct myString {
char *part;
}
割り当ては次のようにする必要があります。
struct myStruct *allStruct = calloc(n, sizeof(struct myStruct));
したがって、n struct myStruct にポインター/配列があります。
次に、allStruct のすべてのメンバーを初期化します。
for( i=0; i<n; ++i )
{
allStruct[i].text = calloc(5, sizeof(myString));
// Following for only needed if you want new strings by using the strncpy (see above)
for( y=0; y<5; ++y )
{
allSTruct[i].text[y].part = calloc(101, sizeof(char));
}
}
これで、すべての変数が初期化されました。
500 文字の長い文字列を allStruct[n] にコピーするには:
for( i=0; i<5; i++ )
{
allStructs[n].text[i].part = &text[i*100]; // If you want to point on the existing string
// OR
strncpy(allStructs[n].text[i].part, &text[i*100], 100); // If you want to have new strings
// In all case, terminate the string with '\0'
allStructs[n].text[i].part[100] = '\0';
}
これはうまくいくはずです。