在C語言中,可以使用strcmp()函數來比較兩個字符串的大小。該函數會比較兩個字符串的ASCII碼值,并返回一個整數值來表示比較結果。具體的比較規則如下:
示例代碼如下:
#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("第一個字符串小于第二個字符串\n");
} else {
printf("第一個字符串大于第二個字符串\n");
}
return 0;
}