请输入您要查询的百科知识:

 

词条 fputc
释义

e 函数名: fputc

功 能: 送一个字符到一个流中

函数头:属于输入输出函数,在C语言中,包含在文件stdio.h中。ANSI标准。

返回值:如果写入成功则返回写入的字符,失败则返回EOF.

用 法: int fputc(int ch, FILE *stream);

程序例:

#include <stdio.h>

int main(void)

{

char msg[] = "Hello world";

int i = 0;

while (msg[i]&&(i<strlen(msg)))

{

fputc(msg[i], stdout);

i++;

}

return 0;

}

程序例二:

#include<stdio.h>

#include<stdlib.h>

void main()

{

FILE *fpout;

char ch;

if((fpout=fopen("file_a.dat","w"))==NULL)

{

printf("Error!\");

exit;

}

ch=getchar();

for(;ch!='#';)

{

putc(ch,fpout);

ch=getchar();//不能仅写getchar();

}

fclose(fpout);

}

备注:putc()功能与用法与之完全相同。

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/31 9:59:59