Differences between/N and/R

Source: Internet
Author: User

'/R' is the carriage return,'/N' is the line feed, the former causes the cursor to the beginning of the line, and the latter causes the cursor to move down one cell. Generally, two keys are used together.

Carriage Return and line feed
Today, I have finally figured out the origins and differences between carriage return and line feed.
Before the computer appeared, there was a kind of device called teletype model 33, which can contain 10 characters per second. But there is a problem, that is, when a line breaks a line, it takes 0.2 seconds, just two characters. If a new character is passed in the 0.2 s, the character will be lost.

As a result, the developers thought of a way to solve this problem, that is, adding two end characters after each line. One is "enter", which tells the typewriter to position the print head on the left boundary, and the other is "line feed", which tells the typewriter to move the paper down one line.

This is the source of "line feed" and "Carriage Return". They can also be seen in their English names.

Later, computers were invented, and these two concepts were invented on computers. At that time, memory was very expensive. Some scientists thought it would be too waste to add two characters at the end of each line. Just add one character. As a result, there were differences.

UNIX
In the system, each line ends with "<line feed>", that is, "/N". In Windows, each line ends with "<line feed> <press enter>", that is,"
/N/R "; In Mac, the end of each line is" <press enter> ". One direct consequence is that if a file in UNIX/MAC is opened in windows, all the text will
And Windows files opened under UNIX/Mac, there may be an extra ^ m symbol at the end of each line.

C language programming (Windows) /R means return to the beginning of the row. This will overwrite the previous output of this row.
example:
int main () {
cout <"ajax" <"/R" <"China ";
}< br> only China is displayed, while Ajax is overwritten.
/N is a carriage return + line feed. The cursor is first moved to the beginning of the line and then switched to the next line, that is, the next line. line header pulling
int main () {
cout <"ajax" <"/N" <"China ";
}< br> displayed
Ajax
China

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.