Which escape sequences represent the newline character and backspace character ? An escape sequence represents how many characters ?
\n is the newline character and \b is the backspace character. escape sequence represents one character
\n is the newline character and \b is the backspace character. escape sequence represents one character
Because they are special characters and they need to be escaped sometimes. For instance ‘Mohan’s pen’ will end the sentence at the apostrophe only and so the correct way to do it is ‘Mohan\’s pen’
Why are characters \ , ” and tab typed using escape sequences ? Read More »