用法:#include <string.h>
功能:比較字元串s1和s2,但不區分字母的大小寫。
說明:strcmpi是到stricmp的宏定義,實際未提供此函式。
當s1<s2時,返回值<0
當s1=s2時,返回值=0
當s1>s2時,返回值>0
舉例:
// stricmp.c
#include <syslib.h>
#include <string.h>
main()
{
char *s1="Hello, Programmers!";
char *s2="Hello, programmers!";
int r;
clrscr();
r=strcmpi(s1,s2);
if(!r)
printf("s1 and s2 are identical");
else
if(r<0)
printf("s1 less than s2");
else
printf("s1 greater than s2");
getchar();
return 0;
}
相關詞條
-
strcmpi
函式的計算式。
-
string.h
*strerror(int errnum);程式例:strcmpi函式名:strcmpi...
簡單介紹 檔案資料 版本內容 疑問解答 函式用法 -
《C函式速查手冊》
strcmp函式:比較字元串 2.27 strcmpi函式:比較字元串...
基本信息 內容簡介 編輯推薦 目錄 -
stricmp
Windows特有函式功能:比較字元串s1和s2,但不區分字母的大小寫。說明:strcmpi是到stricmp的宏定義,實際未提供此函式... category, see setlocale.The _strcmpi...
Windows特有函式 Linux下使用