摘要: 1 fputc() 2 int fputc(int char, FILE *stream); 3 //把参数 char 指定的字符(一个无符号字符)写入到指定的流 stream中, 4 //并把位置标识符往前移动 5 //char -- 这是要被写入的字符。该字符以其对应的 int 值进行传递。 6 //stream -- 这是指向 FILE ... 阅读全文
posted @ 2018-09-12 16:38 帝yi 阅读(1794) 评论(0) 推荐(0) 编辑