strcmp,stricmp

Posted TO_ZG

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strcmp,stricmp相关的知识,希望对你有一定的参考价值。

strcmp,stricmp:
原型:int strcmp(const void *s1, const void *s2);
功能:比较字符串s1和s2是否相同,区分大小写。
说明:如果s1=s2则返回零,否则返回非零值。

原型:int stricmp(char s1,char  s2);
功能:比较字符串s1和s2,但不区分字母的大小写。
说明:strcmpi是到stricmp的宏定义,实际未提供此函数。
      当s1<s2时,返回值<0
      当s1=s2时,返回值=0
      当s1>s2时,返回值>0

以上是关于strcmp,stricmp的主要内容,如果未能解决你的问题,请参考以下文章

strcmp函数怎么用?

strcmp的用法

strcmp函数怎么用的?

C语言问题。。。strcmp怎么运用啊?

使用 '==' 与 'strcmp()' 进行字符串比较

strcmp函数