我尝试创建一个可扩展的20个字母的单词列表。在添加到列表中之前,我使用"char word[20]"作为每个新单词的主机。对于长度为 20- 的单词输入,程序工作正常。如果我添加一个长度为 20+ 的单词,我的程序应该忽略并继续。
但是在下一次,我在那些if-else语句的strlen(word)某处得到了分割错误。
奇怪的是有时我的程序可以克服这个错误,但在大多数情况下,它会崩溃。
一些尝试: - 如果我使用"char word[1000]",它在所有时间(到目前为止)都工作正常。我猜 strlen() 的参数指针错误地指向"继续"之后的错误位置,所以我用 &word[0] 跟踪它并编写 strlen(&word[0]) 并使用"char word[20]"。这并不能解决问题,并且 &word[0] 在发生分段错误时保持不变。
char *wordList[] = {""};
char word[10];
char * p, c;
int i = -1;
int size = 10;
int strlength = -1;
while(strlength != 0){
//get word by using loop of getchar() and detect
printf("Enter word :");
scanf("%s",word);
printf("Taken word: %s at %pn",word,&word[0]);
//detect word length to avoid 4-letter words and words with length 20+
if (strlen(word) == 0){
printf("Break due to length 0n");
break;
}else if(strlen(word) > 20){
printf("Ignore due to length 20+n");
continue;
}
printf("End checking length");
//add word to wordList by extending memory for one new word and assign each char to memory
i++;
wordList[i] = malloc(sizeof(char)*strlen(word)-1);
strcpy(wordList[i],word);
printf("[");
for(int j = 0; j <= i; j++){
printf(" %s,",wordList[j]);
}
printf("]n");
请记住,在 C 中,字符串只是内存中的连续字符集,以已知地址(如果您愿意,可以char*
或char[]
)开头,并以空字节结尾