Prayer

在一般中寻求卓越
posts - 1256, comments - 190, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

memcmp

Posted on 2008-08-25 09:56 Prayer 阅读(598) 评论(0)  编辑 收藏 引用 所属分类: C/C++
原型:extern int memcmp(void *buf1, void *buf2, unsigned int count);

用法:#include <string.h>

功能:比较内存区域buf1和buf2的前count个字节。

说明:
当buf1<buf2时,返回值<0
当buf1=buf2时,返回值=0
当buf1>buf2时,返回值>0

举例:
      #include <conio.h>
      #include <string.h>
      #include<stdio.h>
      main()
      {
char *s1="Hello, Programmers!";
char *s2="Hello, programmers!";
        int r;
        clrscr();
r=memcmp(*s1,*s2,strlen(s1));
        if(!r)
          printf("s1 and s2 are identical");
else if(r<0)
          printf("s1 less than s2");
        else
          printf("s1 greater than s2");

        return 0;
      }


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理