strcmp函數是C語言中的字符串比較函數,用于比較兩個字符串的大小。其函數原型為:
int strcmp(const char *str1, const char *str2);
其中,str1和str2分別是需要比較的兩個字符串。
函數返回值為:
下面是一個使用strcmp函數比較兩個字符串的示例代碼:
#include <stdio.h>
#include <string.h>
int main() {
const char str1[] = "abc";
const char str2[] = "def";
int result = strcmp(str1, str2);
if (result < 0) {
printf("str1小于str2\n");
}
else if (result > 0) {
printf("str1大于str2\n");
}
else {
printf("str1等于str2\n");
}
return 0;
}
上述代碼比較了字符串"abc"和"def"的大小,輸出結果為"str1小于str2"。