strcmp和stricmp、strcmpi三者之间的区别(C++)
#include <string.h>
#include <stdio.h>
原型:extern int strcmp(const void *s1, const void *s2);
用法:#include <string.h>
功能:比较字符串s1和s2是否相同,区分大小写。
说明:如果s1=s2则返回零,否则返回非零值。
原型:extern int stricmp(char *s1,char * s2);
用法:#include <string.h>
功能:比较字符串s1和s2,但不区分字母的大小写。
说明:strcmpi是到stricmp的宏定义,实际未提供此函数。
当s1<s2时,返回值<0
当s1=s2时,返回值=0
当s1>s2时,返回值>0
//举例:
void main()
{
char *str1="I am OldWolf";
char *str2="I am Oldwolf";
int cmp;
printf("原字符串分别为:n%sn%snn",str1,str2);
cmp=strcmp(str1,str2);
if (cmp!=0)
printf("strcmp比较字符串不相同!n");
else
printf("strcmp比较字符串相同!n");
cmp=stricmp(str1,str2);
if (cmp!=0)
printf("stricmp比较字符串不相同!n");
else
printf("stricmp比较字符串相同!n");
cmp=strcmpi(str1,str2);
if (cmp!=0)
printf("strcmpi比较字符串不相同!n");
else
printf("strcmpi比较字符串相同!n");
}
posted on 2014-09-05 11:11 crazylearner 阅读(553) 评论(0) 编辑 收藏 举报
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步