摘要:
函数介绍来自:http://ganquan.info/standard-c/函数名:freopen功能: 替换一个流用法: FILE *freopen(char *filename, char *type, FILE *stream); 1 FILE * __cdecl _tfreopen ( 2 ... 阅读全文
摘要:
转自:http://www.cnblogs.com/chinazhangjie/archive/2012/08/18/2645475.html一、基础部分1.1 什么是可变长参数可变长参数:顾名思义,就是函数的参数长度(数量)是可变的。比如 C 语言的 printf 系列的(格式化输入输出等)函数,... 阅读全文
摘要:
花了点时间把园子弄得好看了点,现在继续。函数名:putc功能: 输出一字符到指定流中用法: intputc(int ch, FILE *stream);#define _putc_lk(_c,_stream) (--(_stream)->_cnt >= 0 ? 0xff & (*(_strea... 阅读全文