我正在尝试创建一个固定长度的数组"字符串"在C,但一直有点麻烦。我遇到的问题是我得到分段错误。
这是我的程序的目标:我想使用从文本文件中读取的数据按索引设置数组的字符串。这是我当前代码的要点(我道歉,我无法添加我的整个代码,但它很长,可能只会引起混淆):
//"n" is set at run time, and 256 is the length I would like the individual strings to be
char (*stringArray[n])[256];
char currentString[256];
//"inputFile" is a pointer to a FILE object (a .txt file)
fread(¤tString, 256, 1, inputFile);
//I would like to set the string at index 0 to the data that was just read in from the inputFile
strcpy(stringArray[i], ¤tString);
答案 0 :(得分:4)
请注意,如果您的字符串长度为256个字符,则需要其容器长度为257个字节,以便添加最终的provides
空字符。
\0
代码的其余部分应该表现相同,尽管可能需要某些强制转换才能取悦期望typedef char FixedLengthString[257];
FixedLengthString stringArray[N];
FixedLengthString currentString;
或char*
而不是const char*
的函数(根据FixedLengthString
可以视为不同的类型在编译器标志上。)