strcmp()
函數是 C 語言標準庫中的一個字符串操作函數,用于比較兩個字符串的大小關系。它的聲明在頭文件
中,函數原型如下:
int strcmp(const char *s1, const char *s2);
該函數接受兩個參數 s1
和 s2
,分別表示要比較的兩個字符串。
函數返回值為整型,它表示比較結果的大小關系,具體解釋如下:
如果字符串?s1
?小于?s2
,則返回一個小于 0 的值。
如果字符串?s1
?等于?s2
,則返回 0。
如果字符串?s1
?大于?s2
,則返回一個大于 0 的值。
以下是一個使用 strcmp()
函數的示例程序:
#include
#include
int main() {
char str1[] = "hello";
char str2[] = "world";
int result = strcmp(str1, str2);
if (result < 0) {
printf("%s is less than %s\n", str1, str2);
} else if (result == 0) {
printf("%s is equal to %s\n", str1, str2);
} else {
printf("%s is greater than %s\n", str1, str2);
}
return 0;
}
在上面的示例程序中,我們通過 strcmp()
函數比較了兩個字符串 str1
和 str2
,并根據比較結果輸出了相應的信息。根據示例程序的運行結果,我們可以看到字符串 "hello"
小于字符串 "world"
,因此輸出了 "hello is less than world"
的信息。