strcmp()函数用法及其详解

strcmp()函数:将指定的两个字符串进行比较。

声明:

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

参数:

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

返回值:(比较指定的ASCII值)

  • 如果 str1 < str2。返回值< 0,
  • 如果 str2 > str1。返回值> 0
  • 如果 str1 = str2,返回值 = 0

strcmp()函数用法及其详解

strcmp()函数:将指定的两个字符串进行比较。

声明:

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

参数:

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

返回值:(比较指定的ASCII值)

  • 如果 str1 < str2。返回值< 0,
  • 如果 str2 > str1。返回值> 0
  • 如果 str1 = str2,返回值 = 0