answersLogoWhite

0

What is carriage return?

Updated: 9/24/2023
User Avatar

Wiki User

9y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is carriage return?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the use of carriage return?

Carriage was the roller on a typewriter that held the paper in place. The carriage return moved the carriage back to the beginning of the column on a new line.


What does the 'carriage return' function do?

The carriage return refers to a key on a typewriter. The carriage return key returns a typer to the beginning of a line of text and goes to the next line. When a typer reaches the end of a line of text on the paper, they would hit the carriage return key to advance to the next line.


Another name for return key?

Carriage Return, and Enter key.


What is backslash r carriage return means in c language?

\r means Carriage Return, which means: return the cursor to the beginning of the line in more simple words we can say that it's deleting each character from the active position upto the beginning.


What is the automatic return of the cursor when it reaches the the right hand margin?

LF, CR (line feed, carriage return) from the typewriter days when the paper would feed around a roller and the roller was on a carriage that moved horizontally.


How do you code a carriage return?

<control>D That's 13, in hex it's 0D.


What does crlf mean?

In computer programming, cr is carriage return, lf is line feed.


What is CR used for in programs?

It can be 'Carriage Return' or 'Connection Request'. Or many other things. Be more specific.


What tag places a carriage return on your webpage?

The <BR> tag is used to insert carriage returns on your web page. For ex: This is line one <BR> This is line two The above text when pasted into a HTML page will get displayed as: This is line one This is line two The <BR> tag has added one carriage return on the web page though we typed the whole text in one line.


When the cursor reaches the margin the moves to the next line is called?

carriage return, line feed


What is the difference between line feed and carriage return?

Line Feed '\n' takes the cursor to newline but does not take it to the beginning. Wheareas the Carriage Return '\r' does just the opposite. The combination '\r\n' is used as EOF (End Of File). Note: Mac uses '\r' for Newline whereas Unix use '\n'.


What does ASCII code 10 represent?

ASCII (decimal) 10 is a linefeed character. text editors often use both a carriage return character (13) and a line feed character (10) when starting a new line. the same logic a typewriter uses where you have to return the carriage (which moves the paper over) and then feed the paper upwards.