devxlogo

File Input/Output

File Input/Output

Question:
I would like to know what is the difference in C between opening a file opened in binary or text mode.

Answer:
The primary difference is in the handling of newlines. Some operating systems use a single character (‘
‘) to signify a new line. However, Windows, being derived from DOS, uses two characters (”
“).

When a file is opened in text mode, these two characters signify a new line. In binary mode, they are returned as two characters within the file.

Another difference is in end-of-file detection. Routines that operate in text mode stop reading if they encounter an end-of-file character. Files opened in binary mode read until the last byte in the file.

Use text mode for reading text files. Use binary mode when you need access to every byte in the file.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist