我知道这个问题经常被问到,但没有其他问题 问题很有帮助。我有一个代码
char *hamlet[] = {"Give every man thy ear, but few thy voice.",
"Neither a borrower nor a lender be.",
"For loan oft loses both itself and friend",
"And borrowing dulls the edge of husbandry.",
"This above all: to thine own self be true."};
int i;
for (i = 0; i < NUM_SENTENCES; i++) {
int size;
char **words = splitString(hamlet[i], &size);
在另一个.c文件中我有
char** splitString(char theString[], int *arraySize){
int numWords = 1;
int i=0;
numWords += countSpaces(theString);
char **wordArray = malloc(numWords * sizeof(char*));
char *token;
token = strtok(theString, " ");
return wordArray;
问题是,当我链接并运行它时,我总是会出现分段错误。我相信这是由内存引起的错误,因为第一个代码和第二个代码位于不同的.c文件中。我真的找不到解决方法
答案 0 :(得分:4)
hamlet
数组的内容都是字符串文字。这些不可修改,通常位于内存的只读部分。 strtok
函数修改了它的参数,这就是你崩溃的原因。
您需要使用strdup
复制正在处理的字符串。然后你可以复制出子串。