描述
C庫函數int strncmp(const char *str1, const char *str2, size_t n)最多比較第一個n字節str1和str2。
聲明
以下是 strncmp() 函數的聲明。
int strncmp(const char *str1, const char *str2, size_t n)
參數
str1- 這是要比較的第一個字符串。
str2- 這是要比較的第二個字符串。
n- 要比較的最大字符數。
返回值
此函數返回值如下 -
如果返回值 < 0,則表示 str1 小於 str2。
如果返回值 > 0,則表示 str2 小於 str1。
如果返回值 = 0,則表示 str1 等於 str2。
示例
下麵的例子展示了 strncmp() 函數的用法。
#include <stdio.h>
#include <string.h>
int main () {
char str1[15];
char str2[15];
int ret;
strcpy(str1, "abcdef");
strcpy(str2, "ABCDEF");
ret = strncmp(str1, str2, 4);
if(ret < 0) {
printf("str1 is less than str2");
} else if(ret > 0) {
printf("str2 is less than str1");
} else {
printf("str1 is equal to str2");
}
return(0);
}
讓我們編譯並運行上麵的程序,將產生以下結果 -
str2 is less than str1
相關用法
- C語言 strncmp()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strncpy()用法及代碼示例
- C語言 strnset()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strtol()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strcat()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strncmp()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。