0
5.3kviews
Explain file handling in C in detail. [Note: mention file types, file modes, file related functions and its uses].
1 Answer
| written 6.7 years ago by | • modified 6.7 years ago |
There are various types of files like:text file stored with the extension “txt”,binary files stored with the extension “bin” etc. For file handling or accessing the contents of file,there are certain predefined functions available in the c programming language,
A file represents a sequence of bytes on the disk where …