资源描述:
《c语言函数大全[表格形式]》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、TurboC2.0函数中文说明大全目录1.字符函数,所在函数库为ctype.h……………………………………………………………………22.数学函数,所在函数库为math.h、stdlib.h、string.h、float.h………………………………………23.目录函数,所在函数库为dir.h、dos.h………………………………………………………………34.进程函数,所在函数库为stdlib.h、process.h…………………………………………………………45.输入输出子程序,所在函数库为io.h、conio.h、stat.h、dos.h、stdio.h、signal.h…………
2、………66.接口子程序,所在函数库为dos.h、bios.h…………………………………………………………117.操作函数,所在函数库为string.h、mem.h………………………………………………………178.存贮分配子程序,所在函数库为dos.h、alloc.h、malloc.h、stdlib.h、process.h…………………199. 时间日期函数,所在函数库为time.h、dos.h………………………………………………………1920TurboC2.0函数中文说明大全字符函数,所在函数库为ctype.hintisalpha(intch)若ch是字母('A'-'Z','a
3、'-'z')返回非0值,否则返回0intisalnum(intch)若ch是字母('A'-'Z','a'-'z')或数字('0'-'9')返回非0值,否则返回0intisascii(intch)若ch是字符(ASCII码中的0-127)返回非0值,否则返回0intiscntrl(intch)若ch是作废字符(0x7F)或普通控制字符(0x00-0x1F)返回非0值,否则返回0intisdigit(intch)若ch是数字('0'-'9')返回非0值,否则返回0intisgraph(intch)若ch是可打印字符(不含空格)(0x21-0x7E)返回非0值,否则返回0intisl
4、ower(intch)若ch是小写字母('a'-'z')返回非0值,否则返回0intisprint(intch)若ch是可打印字符(含空格)(0x20-0x7E)返回非0值,否则返回0intispunct(intch)若ch是标点字符(0x00-0x1F)返回非0值,否则返回0intisspace(intch)若ch是空格(''),水平制表符('t'),回车符('r'),走纸换行('f'),垂直制表符('v'),换行符('')返回非0值,否则返回0intisupper(intch)若ch是大写字母('A'-'Z')返回非0值,否则返回0intisxdigit(int
5、ch)若ch是16进制数('0'-'9','A'-'F','a'-'f')返回非0值,否则返回0inttolower(intch)若ch是大写字母('A'-'Z')返回相应的小写字母('a'-'z')inttoupper(intch)若ch是小写字母('a'-'z')返回相应的大写字母('A'-'Z') 数学函数,所在函数库为math.h、stdlib.h、string.h、float.hintabs(inti)返回整型参数i的绝对值double cabs(structcomplexznum)返回复数znum的绝对值double fabs(doublex)返回双精度参数x的绝对
6、值long labs(longn)返回长整型参数n的绝对值double exp(doublex)返回指数函数ex的值doublefrexp(doublevalue,int*eptr)返回value=x*2n中x的值,n存贮在eptr中doubleldexp(doublevalue,intexp);返回value*2exp的值double log(doublex)返回logex的值doublelog10(doublex)返回log10x的值double pow(doublex,doubley)返回xy的值doublepow10(intp)返回10p的值double sq
7、rt(doublex)返回x的开方double acos(doublex)返回x的反余弦cos-1(x)值,x为弧度double asin(doublex)返回x的反正弦sin-1(x)值,x为弧度double atan(doublex)返回x的反正切tan-1(x)值,x为弧度doubleatan2(doubley,doublex)返回y/x的反正切tan-1(x)值,y的x为弧度double cos(doublex)返回x的余弦cos(x)值,x为弧度double sin(doubl