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;
}
用这个函数我们可以比较两个字符串的大小。
这个是比较常用的用法。
posted on 2011-11-22 21:48 More study needed. 阅读(338) 评论(0) 编辑 收藏 举报