In the C Programming Language, the fgetc function reads a persona from the stream pointed to with the aid of stream.
Syntax
The syntax for the fgetc function in the C Language is:
int fgetc(FILE *stream);
Parameters or Arguments
stream
The stream to read.
Returns
The fgetc characteristic returns the persona read. If an error occurs, the fgetc feature will set the stream’s error indicator and return EOF. If the fgetc feature encounters the stop of stream, it will set the stream’s end-of-file indicator and return EOF.
Required Header
In the C Language, the required header for the fgetc feature is:
#include <stdio.h>
Applies To
In the C Language, the fgetc characteristic can be used in the following versions:
ANSI/ISO 9899-1990
Similar Functions
Other C functions that are similar to the fgetc function:
getc characteristic getchar characteristic
See Also
Other C functions that are noteworthy when dealing with the fgetc function:
fputc feature putc characteristic putchar feature ungetc characteristic
Leave a Review