C语言 <string.h> memcmp 函数

  • 描述

    C库函数int memcmp(const void *str1, const void *str2, size_t n)通过参数str,在所指向的字符串的前n个字节中搜索字符c(无符号字符)的首次出现。
  • 声明

    以下是memcmp函数的声明。
    
    int memcmp(const void *str1, const void *str2, size_t n)
    
    参数
    • str1-这是指向内存块的指针。
    • str2-这是指向内存块的指针。
    • n-这是要比较的字节数。
  • 返回值

    • 如果返回值<0,则表明str1小于str2。
    • 如果返回值> 0,则表明str2小于str1。
    • 如果返回值= 0,则表明str1等于str2。
    示例
    以下示例显示memcmp函数的用法-
    
    #include <stdio.h>
    #include <string.h>
    
    int main () {
       char str1[15];
       char str2[15];
       int ret;
    
       memcpy(str1, "abcdef", 6);
       memcpy(str2, "ABCDEF", 6);
    
       ret = memcmp(str1, str2, 5);
    
       if(ret > 0) {
          printf("str2 is less than str1");
       } else if(ret < 0) {
          printf("str1 is less than str2");
       } else {
          printf("str1 is equal to str2");
       }
       
       return(0);
    }
    
    尝试一下
    让我们编译并运行上面的程序,它将产生以下结果。
    
    str2 is less than str1