strcmp——字符串的比较

 

逐个字符比较,直到遇到不同的,或者到了结尾。

当s1<s2时,返回值<0 ; 当s1=s2时,返回值=0 ; 当s1>s2时,返回值>0

 

#include<iostream>
#include<cstring>
using namespace std;
int main()
{
char *s1="China",*s2="Yinshiyong", *s3="China";
int x1, x2;
x1 = strcmp(s1, s2);
x2 = strcmp(s1, s3);
cout<<x1<<endl<<x2<<endl;
}

 

strcmp——字符串的比较

 

用这个函数我们可以比较两个字符串的大小。

这个是比较常用的用法。

你可能感兴趣的:(字符串)