函数
<cstdio>

fputc

int fputc ( int character, FILE * stream );
将字符写入流
将一个字符写入并推进位置指示器。

该字符被写入到内部位置指示器所指示的位置,然后该指示器自动向前移动一位。

参数

character
要放回的字符的int提升为 int 型的待写入字符。
该值在放回时被内部转换为unsigned char写入时。
stream
指向一个 FILE 对象的指针,该对象标识一个输出流。

返回值

成功时,返回写入的字符
如果发生写入错误,则返回 EOF 并设置错误指示器 (ferror)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* fputc example: alphabet writer */
#include <stdio.h>

int main ()
{
  FILE * pFile;
  char c;

  pFile = fopen ("alphabet.txt","w");
  if (pFile!=NULL) {

    for (c = 'A' ; c <= 'Z' ; c++)
      fputc ( c , pFile );

    fclose (pFile);
  }
  return 0;
}

该程序创建一个名为alphabet.txt的文件,并向其中写入ABCDEFGHIJKLMNOPQRSTUVWXYZ

另见