[Previous] [Contents] [Next]

getc()

Get the next character from a file

Synopsis:

#include <stdio.h>

int getc( FILE* fp );

Library:

libc

Description:

The getc() macro gets the next character from the stream designated by fp. The character is returned as an int value.

Returns:

The next character from the stream fp, cast as (int)(unsigned char), or EOF if an end-of-file or error condition occurs (errno is set).

Examples:

#include <stdio.h>
#include <stdlib.h>

int main( void )
{
    FILE* fp;
    int c;

    fp = fopen( "file", "r" );
    if( fp != NULL ) {
        while( (c = getc( fp )) != EOF ) {
            putchar(c);
        }

        fclose( fp );
        
        return EXIT_SUCCESS;
    }
    
    return EXIT_FAILURE;
}

Classification:

ANSI

Safety:
Cancellation point Yes
Interrupt handler No
Signal handler No
Thread Yes

Caveats:

getc() is a macro.

See also:

errno, fgetc(), fgetchar(), fgets(), fopen(), getchar(), gets(), ungetc()


[Previous] [Contents] [Next]