Learning
Computer
Programming
Computer
Programming
File Management Functions
Function Name |
Operation |
fopen() |
Creates a new 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 begining of the file |
The reference site for this content is http://www.exforsys.com/tutorials/c-language/file-management-in-c.html




