资源描述:
《二级c语言常用库函数》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、C语言常用库函数1字符处理ctype.h2数学函数math.h3输入输出stdio.h4实用工具程序stdlib.h5字符串处理string.h程序应包含在math.h函数类型函数形式功能类型数学函数abs(inti)求整数的绝对值intfabs(doublex)返回浮点数的绝对值doublefloor(doublex)向下舍入doublefmod(doublex,doubley)计算x对y的模,即x/y的余数doubleexp(doublex)指数函数doublelog(doublex)对数函数ln(x)doublelog10(do
2、ublex)对数函数logdoublelabs(longn)取长整型绝对值longmodf(doublevalue,double*iptr)把数分为指数和尾数doublepow(doublex,doubley)指数函数(x的y次方)doublesqrt(doublex)计算平方根doublesin(doublex)正弦函数doubleasin(doublex)反正弦函数doublesinh(doublex)双曲正弦函数doublecos(doublex);余弦函数doubleacos(doublex)反余弦函数doublecosh(d
3、oublex)双曲余弦函数doubletan(doublex)正切函数doubleatan(doublex)反正切函数doubletanh(doublex)双曲正切函数double数学函数abs(inti)求整数的绝对值intfabs(doublex)返回浮点数的绝对值doublefloor(doublex)向下舍入doublefmod(doublex,doubley)计算x对y的模,即x/y的余数doubleexp(doublex)指数函数doublelog(doublex)对数函数ln(x)doublelog10(doublex)
4、对数函数logdoublelabs(longn)取长整型绝对值longmodf(doublevalue,double*iptr)把数分为指数和尾数doublepow(doublex,doubley)指数函数(x的y次方)doublesqrt(doublex)计算平方根doublesin(doublex)正弦函数doubleasin(doublex)反正弦函数doublesinh(doublex)双曲正弦函数doublecos(doublex);余弦函数doubleacos(doublex)反余弦函数doublecosh(doublex
5、)双曲余弦函数doubletan(doublex)正切函数doubleatan(doublex)反正切函数doubletanh(doublex)双曲正切函数double程序应包含在ctype.h函数类型函数形式功能类型字符函数isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否则返回0int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或数字('0'-'9')返回非0值,否则返回0int isascii(int ch) 若ch是字符(ASCII码中
6、的0-127)返回非0值,否则返回0intiscntrl(int ch) 若ch是作废字符(0x7F)或普通控制字符(0x00-0x1F)返回非0值,否则返回0int isdigit(int ch) 若ch是数字('0'-'9')返回非0值,否则返回0int isgraph(int ch) 若ch是可打印字符(不含空格)(0x21-0x7E)返回非0值,否则返回0intislower(int ch) 若ch是小写字母('a'-'z')返回非0值,否则返回0int isprint(int ch) 若ch是可打印字符(含
7、空格)(0x20-0x7E)返回非0值,否则返回0int ispunct(int ch) 若ch是标点字符(0x00-0x1F)返回非0值,否则返回0intisspace(int ch) 若ch是空格(' '),水平制表符('t'),回车符('r'), 走纸换行('f'),垂直制表符('v'),换行符(''),返回非0值,否则返回0intisupper(int ch) 若ch是大写字母('A'-'Z')返回非0值,否则返回0int isxdigit(int ch) 若ch是16进制数('0'-'9','A'-'
8、F','a'-'f')返回非0值,否则返回0int tolower(int ch) 若ch是大写字母('A'-'Z')返回相应的小写字母('a'-'z')int toupper(int ch) 若ch是小写字母(