头文件
#include<stdio.h>
putc
()
1、函数声明
putc函数的声明:int putc(int char, FILE *stream)
2、函数描述
把参数char指定的字符(一个无符号字符)写入到指定的流 stream 中,并把位置标识符往前移动。
3、参数
char — 这是要被写入的字符。该字符以其对应的 int 值进行传递。
stream — 这是指向 FILE 对象的指针,该 FILE 对象标识了要被写入字符的流。
4、函数返回值
该函数以无符号 char 强制转换为 int 的形式返回写入的字符,如果发生错误则返回 EOF。
5、例子
#include <stdio.h>
int main ()
{
FILE *fp;
int ch;
fp = fopen("file.txt", "w");
for( ch = 1 ; ch < 10; ch++ )
{
putc(ch, fp);
}
fclose(fp);
return 0;
}
getc()
1、函数声明
getc函数的声明:int getc(FILE *stream)
2、函数描述
从指定的流 stream 获取下一个字符(一个无符号字符),并把位置标识符往前移动。
3、参数
stream — 这是指向 FILE 对象的指针,该 FILE 对象标识了要在上面执行操作的流。
4、函数返回值
该函数以无符号 char 强制转换为 int 的形式返回读取的字符,如果到达文件末尾或发生读错误,则返回 EOF。
5、例子
#include<stdio.h>
int main()
{
char x;
printf("请输入字符:");
x = getc(stdin);
printf("输入的字符:");
putc(x, stdout);
return 0;
}