我在學C,我有問題。在這個練習中,我必須編寫一個叫做雙荷蘭語的遊戲,在那裏你學會用字符串練習。我遇到的問題是,由於for循環條件(在第一個循環中)程序停止執行。當我打印字符串的長度時,strlen()函數在main和ayInFrontOfConsonant函數中工作良好,但我不明白程序停止工作的原因。在Xcode中,我得到以下消息:線程1:EXC_BAD_ACCESS。很感謝任何形式的幫助。爲什麼strlen函數在這個循環條件下不起作用?
void ayInFrontOfConsonant(char *str)
{
char consonants[42] = { 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k',
'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z', 'B',
'C', 'D', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S',
'T', 'V', 'W', 'X', 'Y', 'Z'};
int a=(int)strlen(str);
printf("\n Length of str in ay function: %d\n",a);
int i=0,j=0;
for(i=0;i<strlen(str);i++) //problem is here
{
for(j=0;j<strlen(consonants);j++)
{
if(str[i]==consonants[j])
{
//insertChar(str, 'a', i);
}
}
}
}
int main()
{
int a=0;
printf("** Welcome to the Double Dutch game **\n");
char myString[36];
printf("Please enter a string: ");
scanf("%[^\n]s", myString);
a=strlen(myString);
printf("Length of string in main: %d\n",a);
ayInFrontOfConsonant(myString);
printf("Double dutch traslation: %s\n",myString);
return 0;
}
你的意見是什麼? –
我使用的輸入是:「我喜歡寫C代碼」 –
如果你知道'strlen()'做了什麼,那麼你就不會那樣使用它。 –