I'd have thought one was enough. But what's the point of doing CRLF (0x0D0A), when you can simply use CR (0D)? Normally, whenever I'm using strings (C++), I do this:

myString = "Test\nThis should be a new line!\nAnother linefeed.";

NOTE: For non-C++ programmers reading this, "\n" is a linefeed (0x0A).

But should I really be doing this:

myString = "Test\r\nThis should be a new line!\r\nAnother carriage return/linefeed pair.";

NOTE: "\r" means carriage return (0x0D).


EDIT: Should this be on Programmers.SE?

link|improve this question

5  
In C++ you should not be using either - use std::endl. – Paul R Jan 27 '11 at 22:56
The point of doing CRLF is for Windows users. – BoltClock Jan 27 '11 at 23:00
1  
@PaulR: Using endl is identical to using \n plus flushing. There is no portability or other advantage to endl. – Fred Nurk Jan 27 '11 at 23:04
2  
std::endl forces a flush on the stream, making it slower – tbridge Jan 27 '11 at 23:05
@PaulR Sorry, I meant I used "\n" for C, but C++ was std::endl, recently. – muntoo Jan 28 '11 at 0:47
show 3 more comments
feedback

4 Answers

up vote 10 down vote accepted

Remember that these codes all came from old Teletype machines. These were effectively typewriters: it was necessary both to advance the paper by a line (line-feed), but also to return the print head (on the carriage) to the left side of the paper (carriage-return).

link|improve this answer
I always wondered, but never asked – tbridge Jan 27 '11 at 23:03
feedback

Windows / Unix / old Mac systems have each different way of writing new lines in text files (not binary ones). If you're programming under windows, then in binary mode, you will read (and you probably want to write) CRLF endings. Under unix-like systems it would be just LF.

If you deal with your own data formats... it shouldn't really matter which way you choose. It all really depends only on what you want to do with the string and where did you get it from.

link|improve this answer
feedback

Some systems like UNIX and OSX just use linefeed, DOS used an additional carriage return in order to be compatible with teletype machines and Windows inherited the architecture.

link|improve this answer
feedback

You use both on Windows because that's the custom on Windows. It's that simple. But you only write both for files destined for Windows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.