C语言字符串比较以及根本原因解释

#include <string.h>

char s1[10],s2[10];
...
if(strcmp(s1,s2)==0)
printf("两字符串相等\n");


string.h 头文件中就有比较函数,可以用来比较是否相等

2:这个是普通方法 不调用函数strcmp();

#include<stdio.h>;



int comparision(char a[],char b[])

{

int t,i=0;

while(a[i]!=‘\0‘||b[i]!=‘\0‘)

{

if(a[i]==b[i]) t=0;

else if(a[i]&gt;b[i]) t=1;

else t=-1;

if(t!=0) break;

i++;

}

return t;

}



main(void)

{

char a[40],b[40];

int k=0;

gets(a);

gets(b);

k=comparision(a,b);

if(k==1) printf("a[40]&gt;b[40]");

else if(k==-1) printf("a[40]&lt;b[40]");

else printf("a[40]=b[40]");

 

 

【解惑】C语言中为什么两个字符串不能直接进行比较?

大家都知道,在C语言中两上字符串是不能直接进行比较的,我们一般使用<string.h>中的字符串比较函数strcmp()来进行两个字符串的比较。那么,为什么不允许两个字符串直接进行比较呢?可做如下解释:

有如下代码:
char s1[] = "abc";
char s2[] = "abc";

如果直接进行比较:
if (s1 == s2)
{
printf("s1等于 s2");
}
else
{
printf("s1 不等于s2");
}

C语言字符串比较以及根本原因解释,布布扣,bubuko.com

C语言字符串比较以及根本原因解释

上一篇:Python 线段树求区间覆盖


下一篇:C++中引用与指针的区别