What is the difference between text and binary modes?
Streams can be classified into two types: text streams and binary streams. Text streams are interpreted, with a maximum length of 255 characters. With text streams, carriage return/line feed combinations are translated to the newline n character and vice versa. Binary streams are uninterpreted and are treated one byte at a time with no translation of characters. Typically, a text stream would be used for reading and writing standard text files, printing output to the screen or printer, or receiving input from the keyboard. A binary text stream would typically be used for reading and writing binary files such as graphics or word processing documents, reading mouse input, or reading and writing to the modem.
-
Interview Candidate
- Mar 6th, 2005
- 1
- 19228
Showing Answers 1 - 1 of 1 Answers
Related Answered Questions
Related Open Questions
What is the difference between text and binary modes?
Related Answered Questions
Related Open Questions