int mystery(const char *s1, const char *s2) {
for(; *s1 != '\0' && *s2 != '\0'; s1++, s2++) {
if(*s1 != *s2) {
return 0;
} //end if
} //end for
return 1;
}
我知道它有輸入錯誤,但這正是它是如何。 感謝球員我也需要它運行,我已經添加了變量聲明,但我得到編譯器錯誤,說這個函數有什麼作用?
在函數`int main()':
,'或';' '{'token
error: a function-definition is not allowed here before '{' token
error: expected
你問這個幹什麼? – sbi 2010-10-29 17:51:48