21xrx.com
2024-11-05 20:39:05 Tuesday
登录
文章检索 我的文章 写文章
如何在C语言中比较字符串大小
2023-06-15 11:42:05 深夜i     --     --
C语言 字符串 strcmp()函数

在C语言中,字符串是由字符数组组成的,可以使用strcmp()函数来比较字符串的大小。strcmp()函数会将两个字符串逐个字符进行比较,如果两个字符串相等,则返回0;如果第一个字符串小于第二个字符串,则返回负数;如果第一个字符串大于第二个字符串,则返回正数。下面是一个使用strcmp()函数比较字符串大小的例子:


#include

#include

int main()

{

  char str1[20] = "hello";

  char str2[20] = "world";

  int result = strcmp(str1, str2);

  if(result > 0)

  {

    printf("str1 is greater than str2");

  }

  else if(result < 0)

  {

    printf("str1 is less than str2");

  }

  else

  {

    printf("str1 and str2 are equal");

  }

  return 0;

}

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复