List of File Handling operation functions in C

Name of Function

Operation of Function

  • fopen()

Creates a new file for use
Opens a new existing file for use

  • fclose

Closes a file which has been opened for use

  • getc()

Reads a character from a file

  • putc()

Writes a character to a file

  • fprintf()

Writes a set of data values to a file

  • fscanf()

Reads a set of data values from a file

  • getw()

Reads a integer from a file

  • putw()

Writes an integer to the file

  • fseek()

Sets the position to a desired point in the file

  • ftell()

Gives the current position in the file

  • rewind()

Sets the position to the beginning of the file

No comments:

Post a Comment