Computer Science, asked by lithaansh, 6 months ago

write a Java program for each of the escape sequences(/n,/t and/")​

Answers

Answered by divyanshigola17
1

Answer:

A character preceded by a backslash (\) is an escape sequence and has a special meaning to the compiler.

Escape sequences in Java.

\' - Inserts a single quote character in the text at this point.

\" - Inserts a double quote character in the text at this point.

\\ -Inserts a backslash character in the text at this point.

Similar questions