answersLogoWhite

0

Can newline be a white space?

Updated: 9/22/2023
User Avatar

Wiki User

11y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Can newline be a white space?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When is a newline not equivalent to space or tab?

Always. A newline is neither a space nor a tab.


What is ascii value of newline?

10 = 0AH


What studio produced the Austin Powers movies?

newline


What does chomp do in perl?

Most commonly it's used to remove the newline character from the end of a string or an array of strings. If the newline character isn't there, then nothing is done to the string. There are other details involved in what chomp does, but mostly that is what it is used for. For instance you can change which character is considered the be the newline character. If you want to know more, I would suggest reading the documentation.


What is difference between blank space and white space?

Blank space if not filled with anything and could be colorless, or any color. White space is filled with white but is definitely white but looks empty.


What is the difference between P and BR tag?

The (or "paragraph" tag) is used to denote the beginning and ending of a paragraph in text. The (or "breaking-space" tag) is use to create a newline withoutending a paragraph.So, the paragraph tag is used exactly as you'd expect. The tag is used in situation like a street address--when one line is separated by a newline from the other, but isn't actually part of a new paragraph.


What are the release dates for White Space - 2014?

White Space - 2014 was released on: USA: 2014


When did Wide White Space Gallery end?

Wide White Space Gallery ended in 1976.


When was Wide White Space Gallery created?

Wide White Space Gallery was created in 1966.


What are the release dates for White Space - 2011?

White Space - 2011 was released on: USA: October 2011


How is the newline formed in c plus plus preprocessor?

\x0a in unix, \x0d\x0a in Win/Dos


How do you end a while loop by accepting newline in integer variable?

A newline has ASCII character code 10, therefore you test for the integer value 10. That's not much use if the user needs to enter 10, therefore you should test the input before assigning the integer.