int strcmp_implementation(const char* s1, const char* s2) { if (*s1 == '\0' && *s2 != 0)//考慮其中一個字串為null的狀況 { return (*s1 - *s2); } ...
確定! 回上一頁