c语言strcmp什么意思(c语言函数之strcmp详解)

 分类:IT知识时间:2022-11-05 07:31:03点击:

原函数:

int strcmp(const char *str1, const char *str2)

函数说明: int strcmp(const char *str1, const char *str2) 比较字符串str1 指向 字符串str2。

参数:

  • str1 -- 是第一个要比较的字符串。
  • str2 -- 是第二个的字符串进行比较。

返回值:

函数的返回值如下:

  • 如果返回值<0,则表明str1小于str2
  • 如果返回值,如果> 0,则表明str2 小于 str1
  • 如果返回值= 0,则表明str1 等于str2

如何使用strncmp() 函数:

#include <stdio.h>

#include <string.h>

int main () {

char str1[15];

char str2[15];

int ret;

strcpy(str1, "abcdef");

strcpy(str2, "ABCDEF");

ret = strcmp(str1, str2);

if(ret < 0) {

printf("str1 is less than str2");

} else if(ret > 0) {

printf("str2 is less than str1");

} else {

printf("str1 is equal to str2");

}

return(0);

}

编译和运行上面的程序,产生如下结果:

str2 is less than str1

除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址: