在C語言中,可以使用strcmp函數來比較兩個字符串。該函數的原型為:
int strcmp(const char *s1, const char *s2);
其中,s1和s2分別為要比較的兩個字符串。strcmp會返回一個整數值,表示字符串的比較結果。具體的比較規則如下:
下面是一個使用strcmp函數比較兩個字符串的示例:
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "Hello";
char str2[] = "World";
int result = strcmp(str1, str2);
if (result == 0) {
printf("兩個字符串相等\n");
} else if (result < 0) {
printf("str1小于str2\n");
} else {
printf("str1大于str2\n");
}
return 0;
}
以上示例中,首先定義了兩個字符串str1和str2,然后使用strcmp函數比較這兩個字符串。根據返回值的不同,輸出對應的比較結果。