码迷,mamicode.com
首页 > 其他好文 > 详细

编程题:strcmp()函数的作用是:从左到右逐个字符比较。遇见‘\0’为止。

时间:2014-05-21 01:55:42      阅读:368      评论:0      收藏:0      [点我收藏+]

标签: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));

bubuko.com,布布扣


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413802

编程题:strcmp()函数的作用是:从左到右逐个字符比较。遇见‘\0’为止。,布布扣,bubuko.com

编程题:strcmp()函数的作用是:从左到右逐个字符比较。遇见‘\0’为止。

标签:c语言

原文地址:http://c10086.blog.51cto.com/6433044/1413802

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!