标签:c语言
编程题:strcmp()函数的作用是:从左到右逐个字符比较。(按照字符对应的ascii码值比较)遇见‘\0’为止。
#include<stdio.h>
#include<string.h>
int string_compare(char string1[],char string2[])
{ int i=0;
while(string1[i]==string2[i]&&string1[i]!=‘\0‘)
i++;
return string1[i]-string2[i];
}
void main()
{ char str1[]="abc",str2[]="abc";
printf("%d,%d\n",strcmp(str1,str2),string_compare(str1,str2));
}
本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413802
编程题:strcmp()函数的作用是:从左到右逐个字符比较。遇见‘\0’为止。,布布扣,bubuko.com
编程题:strcmp()函数的作用是:从左到右逐个字符比较。遇见‘\0’为止。
标签:c语言
原文地址:http://c10086.blog.51cto.com/6433044/1413802