App下載

詞條

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

5011.exit

原型:extern void exit(int retval); 用法:#include <stdlib.h> 功能:結(jié)束程序 說(shuō)明:返回值將被忽略 舉例: // exit.c #include <syslib.h> #include <stdlib.h> main() { int i; clrscr(); ...

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

5012.bcmp

原型:extern int bcmp(const void *s1, const void *s2, int n); 用法:#include <string.h> 功能:比較字符串s1和s2的前n個(gè)字節(jié)是否相等 說(shuō)明:如果s1=s2或n=0則返回零,否則返回非零值。bcmp不檢查NULL。 舉例: // bcmp.c #incl...

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

5013.bcopy

原型:extern void bcopy(const void *src, void *dest, int n); 用法:#include <string.h> 功能:將字符串src的前n個(gè)字節(jié)復(fù)制到dest中 說(shuō)明:bcopy不檢查字符串中的空字節(jié)NULL,函數(shù)沒(méi)有返回值。 舉例: // bcopy.c #include <sys...

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

5014.bzero

原型:extern void bzero(void *s, int n); 用法:#include <string.h> 功能:置字節(jié)字符串s的前n個(gè)字節(jié)為零。 說(shuō)明:bzero無(wú)返回值。 舉例: // bzero.c #include <syslib.h> #include <string.h> main() { struc...

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

5015.memccpy

原型:extern void *memccpy(void *dest, void *src, unsigned char ch, unsigned int count); 用法:#include <string.h> 功能:由src所指內(nèi)存區(qū)域復(fù)制不多于count個(gè)字節(jié)到dest所指內(nèi)存區(qū)域,如果遇到字符ch則停止復(fù)制。 說(shuō)明:返回指向字符ch后的...

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

5016.memcpy

原型:extern void *memcpy(void *dest, void *src, unsigned int count); 用法:#include <string.h> 功能:由src所指內(nèi)存區(qū)域復(fù)制count個(gè)字節(jié)到dest所指內(nèi)存區(qū)域。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不能重疊,函數(shù)返回指向dest的指針。 舉例: ...

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

5017.memchr

原型:extern void *memchr(void *buf, char ch, unsigned count); 用法:#include <string.h> 功能:從buf所指內(nèi)存區(qū)域的前count個(gè)字節(jié)查找字符ch。 說(shuō)明:當(dāng)?shù)谝淮斡龅阶址?em>ch時(shí)停止查找。如果成功,返回指向字符ch的指針;否則返回NULL。 ...

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

5018.memcmp

原型:extern int memcmp(void *buf1, void *buf2, unsigned int count); 用法:#include <string.h> 功能:比較內(nèi)存區(qū)域buf1和buf2的前count個(gè)字節(jié)。 說(shuō)明: 當(dāng)buf1<buf2時(shí),返回值<0 當(dāng)buf1=buf2時(shí),返回值=0 當(dāng)buf1>buf2時(shí)...

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

5019.memicmp

原型:extern int memicmp(void *buf1, void *buf2, unsigned int count); 用法:#include <string.h> 功能:比較內(nèi)存區(qū)域buf1和buf2的前count個(gè)字節(jié)但不區(qū)分字母的大小寫。 說(shuō)明:memicmp同memcmp的唯一區(qū)別是memicmp不區(qū)分大小寫字母。 ...

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

5020.memmove

原型:extern void *memmove(void *dest, const void *src, 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ì)被更改...

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

5011.exit

原型:extern void exit(int retval); 用法:#include <stdlib.h> 功能:結(jié)束程序 說(shuō)明:返回值將被忽略 舉例: // exit.c #include <syslib.h> #include <stdlib.h> main() { int i; clrscr(); ...

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

5012.bcmp

原型:extern int bcmp(const void *s1, const void *s2, int n); 用法:#include <string.h> 功能:比較字符串s1和s2的前n個(gè)字節(jié)是否相等 說(shuō)明:如果s1=s2或n=0則返回零,否則返回非零值。bcmp不檢查NULL。 舉例: // bcmp.c #incl...

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

5013.bcopy

原型:extern void bcopy(const void *src, void *dest, int n); 用法:#include <string.h> 功能:將字符串src的前n個(gè)字節(jié)復(fù)制到dest中 說(shuō)明:bcopy不檢查字符串中的空字節(jié)NULL,函數(shù)沒(méi)有返回值。 舉例: // bcopy.c #include <sys...

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

5014.bzero

原型:extern void bzero(void *s, int n); 用法:#include <string.h> 功能:置字節(jié)字符串s的前n個(gè)字節(jié)為零。 說(shuō)明:bzero無(wú)返回值。 舉例: // bzero.c #include <syslib.h> #include <string.h> main() { struc...

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

5015.memccpy

原型:extern void *memccpy(void *dest, void *src, unsigned char ch, unsigned int count); 用法:#include <string.h> 功能:由src所指內(nèi)存區(qū)域復(fù)制不多于count個(gè)字節(jié)到dest所指內(nèi)存區(qū)域,如果遇到字符ch則停止復(fù)制。 說(shuō)明:返回指向字符ch后的...

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

5016.memcpy

原型:extern void *memcpy(void *dest, void *src, unsigned int count); 用法:#include <string.h> 功能:由src所指內(nèi)存區(qū)域復(fù)制count個(gè)字節(jié)到dest所指內(nèi)存區(qū)域。 說(shuō)明:src和dest所指內(nèi)存區(qū)域不能重疊,函數(shù)返回指向dest的指針。 舉例: ...

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

5017.memchr

原型:extern void *memchr(void *buf, char ch, unsigned count); 用法:#include <string.h> 功能:從buf所指內(nèi)存區(qū)域的前count個(gè)字節(jié)查找字符ch。 說(shuō)明:當(dāng)?shù)谝淮斡龅阶址?em>ch時(shí)停止查找。如果成功,返回指向字符ch的指針;否則返回NULL。 ...

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

5018.memcmp

原型:extern int memcmp(void *buf1, void *buf2, unsigned int count); 用法:#include <string.h> 功能:比較內(nèi)存區(qū)域buf1和buf2的前count個(gè)字節(jié)。 說(shuō)明: 當(dāng)buf1<buf2時(shí),返回值<0 當(dāng)buf1=buf2時(shí),返回值=0 當(dāng)buf1>buf2時(shí)...

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

5019.memicmp

原型:extern int memicmp(void *buf1, void *buf2, unsigned int count); 用法:#include <string.h> 功能:比較內(nèi)存區(qū)域buf1和buf2的前count個(gè)字節(jié)但不區(qū)分字母的大小寫。 說(shuō)明:memicmp同memcmp的唯一區(qū)別是memicmp不區(qū)分大小寫字母。 ...

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

5020.memmove

原型:extern void *memmove(void *dest, const void *src, 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ì)被更改...

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

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

w3cschool 建議您:

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

熱門課程