Linguaggio C - fclose()

NOME

fclose() - chiude uno stream

SINOPSI

#include <stdio.h> int fclose(FILE *stream);

DESCRIZIONE

La funzione fclose() chiude il file associato a stream durante l'apertura con fopen().
Se stream e' stato usato in output, i dati bufferizzati sono scritti con fflush() prima della chiusura del file.

VALORE DI RITORNO

La funzione fclose() ritorna 0 in caso di successo e EOF in caso di fallimento.

CONFORME A

ANSI C3.159-1989 ('ANSI C')

VEDI ANCHE

fopen() fdopen() freopen() tmpfile() setbuf() setbuffer() setlinebuf() setvbuf() clearerr(), feof(), ferror(), fileno() fseek(), rewind(), ftell(), fgetpos(), fsetpos() fflush() fgetc(), getc(), getchar(), ungetc() fputc(), putc(), putchar() fgets(), gets() fputs(), puts() scanf(), fscanf(), sscanf(), vscanf(), vfscanf(), vsscanf() printf(), fprintf(), sprintf(), snprintf(), vprintf(), vfprintf(), vsprintf(), vsnprintf() fread() fwrite()


Indice-C Indice linguaggio C
Indice librerie Indice librerie C
At Home Umberto Zappi Home Page
Indice funzioni Indice funzioni C