库函数:tolower()介绍
摘要:C库函数 int tolower(int c)把给定的字母转换为小写的字母。 编译运行,输出:runoob 转自:http://www.runoob.com/
阅读全文
posted @
2018-07-10 10:29
看那两条鱼
阅读(456)
推荐(0)
库函数:memset介绍
摘要:函数原型: #include <string.h> void *memset(void *s, int c, size_t n);
阅读全文
posted @
2018-07-10 10:21
看那两条鱼
阅读(165)
推荐(0)
库函数: ftell介绍
摘要:C库函数返回给定流stream的文件位置,即文件位置指针当前的位置相对于文件首的偏移字节数。 函数原型:long int ftell(FILE *stream);
阅读全文
posted @
2018-07-10 10:21
看那两条鱼
阅读(213)
推荐(0)