我與C中的strcat
功能有點問題,我要的是,有一個字符串(org_surname
),檢查選擇的字符是一個輔音,並將其添加到另一個字符串(coded_surname
)。Ç - 字符串錯誤
int lenght = strlen(org_surname); int i = 0; int count = 0;
while(i<lenght && count < 3){
if (org_surname[i] != 'a' && org_surname[i] != 'e' && org_surname[i] != 'i' && org_surname[i] != 'i' && org_surname[i] != 'u'){
strcat(coded_surname,org_surname[i]);
count++;
}
i++;
}
錯誤總是相同的。
"passing argoment 2 of strcat makes a from integer without a cast.
我該如何解決這個問題?