strcmpi()函数是C语言中的内置函数,并且在“string.h”头文件中定义。 strcmpi()函数与strcmp()函数相同,但唯一的区别是strcmpi()函数不区分大小写,而strcmp()函数则区分大小写。
用法:
int strcmpi (const char * str1, const char * str2 );
参数:
- str1:第一个字符串。
- str2:第二个字符串。
返回值:如果给定的两个字符串相同,则此函数返回0;如果str1的长度小于str2的长度,则该函数返回负值;如果str1的长度大于str2的长度,则该函数返回正值。
注意:这是一个非标准函数,仅适用于旧版本的MicrosoftC。
以下示例程序旨在说明C语言中的strcmpi()函数:
程序1:
// C program to demonstrate
// example of strcmpi() function
#include <stdio.h>
#include <string.h>
int main( )
{
char str1[] = "geeks" ;
char str2[] = "geeks" ;
int j = strcmpi ( str1, str2 ) ;
printf ( "The function returns = %d",j ) ;
return 0;
}
输出:
The function returns = 0
程序2:
// C program to demonstrate
// example of strcmpi() function
#include <stdio.h>
#include <string.h>
int main( )
{
char str1[ ] = "geeks" ;
char str2[ ] = "ForGeeks" ;
int i = strcmpi ( str1, str2 ) ;
printf ( "The function returns = %d", i ) ;
return 0;
}
输出:
The function returns = 1
相关用法
- C语言 tolower()用法及代码示例
- C语言 strlwr()用法及代码示例
- C语言 putchar()用法及代码示例
- C++ ldexp()用法及代码示例
- C++ wcstoll()用法及代码示例
- C++ iswblank()用法及代码示例
- C++ iswalnum()用法及代码示例
- C++ exp2()用法及代码示例
- C++ raise()用法及代码示例
- C++ feupdateenv()用法及代码示例
- C++ gmtime()用法及代码示例
- C++ iswpunct()用法及代码示例
- C++ towupper()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 strcmpi() function in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。