描述
C库函数int memcmp(const void *str1, const void *str2, size_t n))比较第一个n内存区域的字节数str1和内存区str2。
声明
以下是 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
相关用法
- C语言 memchr()用法及代码示例
- C语言 memcpy()用法及代码示例
- C语言 memmove()用法及代码示例
- C语言 memset()用法及代码示例
- C语言 moveto()用法及代码示例
- C语言 mbtowc()用法及代码示例
- C语言 modf()用法及代码示例
- C语言 moverel()用法及代码示例
- C语言 mktime()用法及代码示例
- C语言 malloc()用法及代码示例
- C语言 mblen()用法及代码示例
- C语言 mbstowcs()用法及代码示例
- C语言 宏 assert()用法及代码示例
- C语言 vprintf()用法及代码示例
- C语言 宏 va_start()用法及代码示例
- C语言 setlocale()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 sinh()用法及代码示例
- C语言 宏 offsetof()用法及代码示例
- C语言 feof()用法及代码示例
注:本文由纯净天空筛选整理自 C library function - memcmp()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。