在C語言中,可以使用strcmp函數來比較兩個字符串的大小。strcmp函數的原型為:
int strcmp(const char* str1, const char* str2);
該函數將兩個字符串作為參數,如果str1小于str2,則返回一個負整數;如果str1等于str2,則返回0;如果str1大于str2,則返回一個正整數。
示例代碼如下:
#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "hello";
char str2[20] = "world";
int result = strcmp(str1, str2);
if (result < 0) {
printf("str1 is less than str2\n");
} else if (result > 0) {
printf("str1 is greater than str2\n");
} else {
printf("str1 is equal to str2\n");
}
return 0;
}
以上代碼將輸出"str1 is less than str2",因為在字典序中,“hello"小于"world”。