Recent Post

Some important parts of File Operations and Function

Sequential file access is performed with the following library functions.

1. fopen() - Create a new file
2. fclose() - Close file
3. getc()  - Read character from file
4. putc()  -Write character to a file
5. getw() -Read integer from file
6. putw()  -Write integer to a file
7. fprintf() -Write set of data values
8. fscanf() -Read set of data values

No comments