What are carriage return, linefeed, and form feed?

后端 未结 12 1431
我寻月下人不归
我寻月下人不归 2020-11-22 14:26

What is the meaning of the following control characters:

  1. Carriage return

  2. Line feed

  3. Form feed

相关标签:
12条回答
  • 2020-11-22 15:09

    \r is carriage return and moves the cursor back like if i will do-

    printf("stackoverflow\rnine")
    ninekoverflow
    

    means it has shifted the cursor to the beginning of "stackoverflow" and overwrites the starting four characters since "nine" is four character long.

    \n is new line character which changes the line and takes the cursor to the beginning of a new line like-

    printf("stackoverflow\nnine")
    stackoverflow
    nine
    

    \f is form feed, its use has become obsolete but it is used for giving indentation like

    printf("stackoverflow\fnine")
    stackoverflow
                 nine
    

    if i will write like-

    printf("stackoverflow\fnine\fgreat")
    stackoverflow
                 nine
                     great
    
    0 讨论(0)
  • 2020-11-22 15:09

    Carriage return and line feed are also references to typewriters, in that the with a small push on the handle on the left side of the carriage (the place where the paper goes), the paper would rotate a small amount around the cylinder, advancing the document one line. If you had finished typing one line, and wanted to continue on to the next, you pushed harder, both advancing a line and sliding the carriage all the way to the right, then resuming typing left to right again as the carriage traveled with each keystroke. Needless to say, word-wrap was the default setting for all word processing of the era. P:D

    0 讨论(0)
  • 2020-11-22 15:10

    Have a look at Wikipedia:

    Systems based on ASCII or a compatible character set use either LF (Line feed, '\n', 0x0A, 10 in decimal) or CR (Carriage return, '\r', 0x0D, 13 in decimal) individually, or CR followed by LF (CR+LF, 0x0D 0x0A). These characters are based on printer commands: The line feed indicated that one line of paper should feed out of the printer, and a carriage return indicated that the printer carriage should return to the beginning of the current line.

    0 讨论(0)
  • 2020-11-22 15:11

    Consider an IBM 1403 impact printer. CR moved the print head to the start of the line, but did NOT advance the paper. This allowed for "overprinting", placing multiple lines of output on one line. Things like underlining were achieved this way, as was BOLD print. LF advanced the paper one line. If there was no CR, the next line would print as a staggered-step because LF didn't move the print head. FF advanced the paper to the next page. It typically also moved the print head to the start of the first line on the new page, but you might need CR for that. To be sure, most programmers coded CRFF instead of CRLF at the end of the last line on a page because an extra CR created by FF wouldn't matter.

    0 讨论(0)
  • 2020-11-22 15:13

    \f is used for page break. You cannot see any effect in the console. But when you use this character constant in your file then you can see the difference.

    Other example is that if you can redirect your output to a file then you don't have to write a file or use file handling.

    For ex:

    Write this code in c++

    void main()    
    {
        clrscr();
        cout<<"helloooooo" ;
    
        cout<<"\f";
        cout<<"hiiiii" ;
    
    }
    

    and when you compile this it generate an exe(for ex. abc.exe)

    then you can redirect your output to a file using this:

    abc > xyz.doc

    then open the file xyz.doc you can see the actual page break between hellooo and hiiii....

    0 讨论(0)
  • 2020-11-22 15:15

    Apart from above information, there is still an interesting history of LF (\n) and CR (\r). [Original author : 阮一峰 Source : http://www.ruanyifeng.com/blog/2006/04/post_213.html] Before computer came out, there was a type of teleprinter called Teletype Model 33. It can print 10 characters each second. But there is one problem with this, after finishing printing each line, it will take 0.2 second to move to next line, which is time of printing 2 characters. If a new characters is transferred during this 0.2 second, then this new character will be lost.

    So scientists found a way to solve this problem, they add two ending characters after each line, one is 'Carriage return', which is to tell the printer to bring the print head to the left.; the other one is 'Line feed', it tells the printer to move the paper up 1 line.

    Later, computer became popular, these two concepts are used on computers. At that time, the storage device was very expensive, so some scientists said that it was expensive to add two characters at the end of each line, one is enough, so there are some arguments about which one to use.

    In UNIX/Mac and Linux, '\n' is put at the end of each line, in Windows, '\r\n' is put at the end of each line. The consequence of this use is that files in UNIX/Mac will be displayed in one line if opened in Windows. While file in Windows will have one ^M at the end of each line if opened in UNIX or Mac.

    0 讨论(0)
提交回复
热议问题