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

 

词条 fgetc
释义

功 能

从流中读取字符。

用法?

格式:int fgetc(FILE *stream);

意为从文件指针stream指向的文件中读取一个字符。

这个函数的返回值,是返回读取的一个字节。如果读到文件末尾或者读取出错时返回EOF。

程序例

#include <string.h>

#include <stdio.h>

#include <conio.h>

int main(void)

{ FILE *stream;

char string[ ] = "This is a test";

int ch; /* open a file for update */

stream = fopen("DUMMY.FIL", "w+"); /* write a string into the file */

fwrite(string, strlen(string), 1, stream); /* seek to the beginning of the file */

fseek(stream, 0, SEEK_SET);

do

{ /* read a char from the file */

ch = fgetc(stream); /* display the character */

putch(ch);

} while (ch != EOF);

fclose(stream);

return 0; }

Linux C

相关函数

open,fread,fscanf,getc

表头文件

include<stdio.h>

定义函数

int fgetc(FILE * stream);

函数说明

fgetc()从参数stream所指的文件中读取一个字符,并把它作为一个字符返回。若读到文件尾或出现错误时,它就返回EOF,你必须通过ferror或feof来区分这两种情况。

返回值

fgetc()会返回读取到的字符,若返回EOF则表示到了文件尾,或出现了错误。

范例

#include<stdio.h>

void main()

{

FILE *fp;

int c;

fp=fopen("exist","r");

while((c=fgetc(fp))!=EOF)

printf("%c",c);

fclose(fp);

}

随便看

 

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

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/16 19:34:33