App下載

詞條

大約有 8,000 項(xiàng)符合查詢(xún)結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0059秒)

5011.strcpy

原型:extern char *strcpy(char *dest,char *src); 用法:#include <string.h> 功能:把src所指由NULL結(jié)束的字符串復(fù)制到dest所指的數(shù)組中。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不可以重疊且dest必須有足夠的空間來(lái)容納src的字符串。 ...

http://www.o2fo.com/cyykhsscsc/xvo1be.html

5012.strcat

原型:extern char *strcat(char *dest,char *src); 用法:#include <string.h> 功能:把src所指字符串添加到dest結(jié)尾處(覆蓋dest結(jié)尾處的'\0')并添加'\0'。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不可以重疊且dest必須有足夠的空間...

http://www.o2fo.com/cyykhsscsc/xco1bf.html

5013.strcmp

原型:extern int strcmp(char *s1,char * s2); 用法:#include <string.h> 功能:比較字符串s1和s2。 說(shuō)明: 當(dāng)s1<s2時(shí),返回值<0 當(dāng)s1=s2時(shí),返回值=0 當(dāng)s1>s2時(shí),返回值>0 舉例: // strcmp.c #inc...

http://www.o2fo.com/cyykhsscsc/usg1bh.html

5014.stricmp,strcmpi

原型:extern int stricmp(char *s1,char * s2); 用法:#include <string.h> 功能:比較字符串s1和s2,但不區(qū)分字母的大小寫(xiě)。 說(shuō)明:strcmpi是到stricmp的宏定義,實(shí)際未提供此函數(shù)。 當(dāng)s1<s2時(shí),返回值<0 當(dāng)s1=s2時(shí),...

http://www.o2fo.com/cyykhsscsc/azi1bi.html

5015.stricmp,strcmpi

原型:extern int stricmp(char *s1,char * s2); 用法:#include <string.h> 功能:比較字符串s1和s2,但不區(qū)分字母的大小寫(xiě)。 說(shuō)明:strcmpi是到stricmp的宏定義,實(shí)際未提供此函數(shù)。 當(dāng)s1<s2時(shí),返回值<0 當(dāng)s1=s2時(shí)...

http://www.o2fo.com/cyykhsscsc/ibf1bj.html

5016.strdup

原型:extern char *strdup(char *s); 用法:#include <string.h> 功能:復(fù)制字符串s 說(shuō)明:返回指向被復(fù)制的字符串的指針,所需空間由malloc()分配且可以由free()釋放。 舉例: // strdup.c #include <syslib.h> #...

http://www.o2fo.com/cyykhsscsc/nkd1bl.html

5017.strlen

原型:extern int strlen(char *s); 用法:#include <string.h> 功能:計(jì)算字符串s的長(zhǎng)度 說(shuō)明:返回s的長(zhǎng)度,不包括結(jié)束符NULL。 舉例: // strlen.c #include <syslib.h> #include <string.h> main() { ...

http://www.o2fo.com/cyykhsscsc/wsu1bm.html

5018.strlwr

原型:extern char *strlwr(char *s); 用法:#include <string.h> 功能:將字符串s轉(zhuǎn)換為小寫(xiě)形式 說(shuō)明:只轉(zhuǎn)換s中出現(xiàn)的大寫(xiě)字母,不改變其它字符。返回指向s的指針。 舉例: // strlwr.c #include <syslib.h> ...

http://www.o2fo.com/cyykhsscsc/pow1bn.html

5019.strupr

原型:extern char *strupr(char *s); 用法:#include <string.h> 功能:將字符串s轉(zhuǎn)換為大寫(xiě)形式 說(shuō)明:只轉(zhuǎn)換s中出現(xiàn)的小寫(xiě)字母,不改變其它字符。返回指向s的指針。 舉例: // strupr.c #include <syslib.h> ...

http://www.o2fo.com/cyykhsscsc/afq1bo.html

5020.strncat

原型:extern char *strncat(char *dest,char *src,int n); 用法:#include <string.h> 功能:把src所指字符串的前n個(gè)字符添加到dest結(jié)尾處(覆蓋dest結(jié)尾處的'\0')并添加'\0'。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不可以重疊且dest...

http://www.o2fo.com/cyykhsscsc/kpy1bp.html

抱歉,暫時(shí)沒(méi)有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

5011.strcpy

原型:extern char *strcpy(char *dest,char *src); 用法:#include <string.h> 功能:把src所指由NULL結(jié)束的字符串復(fù)制到dest所指的數(shù)組中。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不可以重疊且dest必須有足夠的空間來(lái)容納src的字符串。 ...

http://www.o2fo.com/cyykhsscsc/xvo1be.html

5012.strcat

原型:extern char *strcat(char *dest,char *src); 用法:#include <string.h> 功能:把src所指字符串添加到dest結(jié)尾處(覆蓋dest結(jié)尾處的'\0')并添加'\0'。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不可以重疊且dest必須有足夠的空間...

http://www.o2fo.com/cyykhsscsc/xco1bf.html

5013.strcmp

原型:extern int strcmp(char *s1,char * s2); 用法:#include <string.h> 功能:比較字符串s1和s2。 說(shuō)明: 當(dāng)s1<s2時(shí),返回值<0 當(dāng)s1=s2時(shí),返回值=0 當(dāng)s1>s2時(shí),返回值>0 舉例: // strcmp.c #inc...

http://www.o2fo.com/cyykhsscsc/usg1bh.html

5014.stricmp,strcmpi

原型:extern int stricmp(char *s1,char * s2); 用法:#include <string.h> 功能:比較字符串s1和s2,但不區(qū)分字母的大小寫(xiě)。 說(shuō)明:strcmpi是到stricmp的宏定義,實(shí)際未提供此函數(shù)。 當(dāng)s1<s2時(shí),返回值<0 當(dāng)s1=s2時(shí),...

http://www.o2fo.com/cyykhsscsc/azi1bi.html

5015.stricmp,strcmpi

原型:extern int stricmp(char *s1,char * s2); 用法:#include <string.h> 功能:比較字符串s1和s2,但不區(qū)分字母的大小寫(xiě)。 說(shuō)明:strcmpi是到stricmp的宏定義,實(shí)際未提供此函數(shù)。 當(dāng)s1<s2時(shí),返回值<0 當(dāng)s1=s2時(shí)...

http://www.o2fo.com/cyykhsscsc/ibf1bj.html

5016.strdup

原型:extern char *strdup(char *s); 用法:#include <string.h> 功能:復(fù)制字符串s 說(shuō)明:返回指向被復(fù)制的字符串的指針,所需空間由malloc()分配且可以由free()釋放。 舉例: // strdup.c #include <syslib.h> #...

http://www.o2fo.com/cyykhsscsc/nkd1bl.html

5017.strlen

原型:extern int strlen(char *s); 用法:#include <string.h> 功能:計(jì)算字符串s的長(zhǎng)度 說(shuō)明:返回s的長(zhǎng)度,不包括結(jié)束符NULL。 舉例: // strlen.c #include <syslib.h> #include <string.h> main() { ...

http://www.o2fo.com/cyykhsscsc/wsu1bm.html

5018.strlwr

原型:extern char *strlwr(char *s); 用法:#include <string.h> 功能:將字符串s轉(zhuǎn)換為小寫(xiě)形式 說(shuō)明:只轉(zhuǎn)換s中出現(xiàn)的大寫(xiě)字母,不改變其它字符。返回指向s的指針。 舉例: // strlwr.c #include <syslib.h> ...

http://www.o2fo.com/cyykhsscsc/pow1bn.html

5019.strupr

原型:extern char *strupr(char *s); 用法:#include <string.h> 功能:將字符串s轉(zhuǎn)換為大寫(xiě)形式 說(shuō)明:只轉(zhuǎn)換s中出現(xiàn)的小寫(xiě)字母,不改變其它字符。返回指向s的指針。 舉例: // strupr.c #include <syslib.h> ...

http://www.o2fo.com/cyykhsscsc/afq1bo.html

5020.strncat

原型:extern char *strncat(char *dest,char *src,int n); 用法:#include <string.h> 功能:把src所指字符串的前n個(gè)字符添加到dest結(jié)尾處(覆蓋dest結(jié)尾處的'\0')并添加'\0'。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不可以重疊且dest...

http://www.o2fo.com/cyykhsscsc/kpy1bp.html

抱歉,暫時(shí)沒(méi)有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門(mén)課程