What are the mode specifier in binary mode of c language?
Answers
Answered by
0
Answer:
File can be in binary mode or text mode. Binary mode deals with data records. These records can be in the form of a single byte or several bytes. Most often structured objects are stored in binary mode. C library has two API routines fread and fwrite. fread is to read records from the file and fwrite is to write records to a file.
Explanation:
Similar questions