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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。