App下載

詞條

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

5021.setmem

原型:extern void setmem(void *buf, unsigned int count, char ch); 用法:#include <string.h> 功能:把buf所指內(nèi)存區(qū)域前count個(gè)字節(jié)設(shè)置成字符ch。 說(shuō)明:返回指向buf的指針。 舉例: // setmem.c #include <syslib.h> #...

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

5022.movmem

原型:extern void movmem(void *src, void *dest, unsigned int count); 用法:#include <string.h> 功能:由src所指內(nèi)存區(qū)域復(fù)制count個(gè)字節(jié)到dest所指內(nèi)存區(qū)域。 說(shuō)明:src和dest所指內(nèi)存區(qū)域可以重疊,但復(fù)制后src內(nèi)容會(huì)被更改。函數(shù)...

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

5023.stpcpy

原型:extern char *stpcpy(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/yod1bd.html

5024.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

5025.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

5026.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

5027.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

5028.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

5029.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

5030.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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

5021.setmem

原型:extern void setmem(void *buf, unsigned int count, char ch); 用法:#include <string.h> 功能:把buf所指內(nèi)存區(qū)域前count個(gè)字節(jié)設(shè)置成字符ch。 說(shuō)明:返回指向buf的指針。 舉例: // setmem.c #include <syslib.h> #...

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

5022.movmem

原型:extern void movmem(void *src, void *dest, unsigned int count); 用法:#include <string.h> 功能:由src所指內(nèi)存區(qū)域復(fù)制count個(gè)字節(jié)到dest所指內(nèi)存區(qū)域。 說(shuō)明:src和dest所指內(nèi)存區(qū)域可以重疊,但復(fù)制后src內(nèi)容會(huì)被更改。函數(shù)...

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

5023.stpcpy

原型:extern char *stpcpy(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/yod1bd.html

5024.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

5025.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

5026.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

5027.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

5028.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

5029.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

5030.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

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

w3cschool 建議您:

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

熱門(mén)課程