代码搜索结果

找到约 10,000 项符合 的代码

funtc15.dat

函数名 modf 函数原型 double modf(double val,double *iptr); 功能 把双精度数val分解为整数部分和小数部分,把整数部分存到iptr指向的单元. 返回值 val的小数部分

funtc54.dat

函数名 fread 函数原型 int fread(char * pt,unsigned size,unsigned n,FILE * fp); 功能 从fp所指定的文件中读取长度为size的n个数据项,存到pt所指向的内存区. 返回值 返回所读的数据项个数,如遇文件结束或出错返回 0.

funtc41.dat

函数名 toupper 函数原型 int toupper(int ch); 功能 将ch字符转换成大写字母. 返回值 与ch相应的大写字母.

funtc28.dat

函数名 islower 函数原型 int islower(int ch); 功能 检查ch是否小写字母(a-z). 返回值 是返回 1,否则返回 0. 包含文件 ctype.h