在C语言中,可以使用strcmp函数来比较两个字符串的大小。该函数的原型为:
int strcmp(const char *str1, const char *str2);
该函数将返回一个整数值,如果str1小于str2,则返回一个负数;如果str1等于str2,则返回0;如果str1大于str2,则返回一个正数。例如:
char str1[] = "Hello";
char str2[] = "World";
if(strcmp(str1, str2) < 0) {
printf("str1 is smaller than str2\n");
} else if(strcmp(str1, str2) > 0) {
printf("str1 is larger than str2\n");
} else {
printf("str1 is equal to str2\n");
}
注意:在比较字符串大小时,strcmp函数会逐个比较字符串中的字符,直到出现不同的字符或者遇到字符串结束符’\0’为止。