Computer Science, asked by Akonvict2199, 11 months ago

What do you mean by Escape Sequence in C++? Write any two escape sequence characters & name them?

Answers

Answered by abigail123
8

In C, all escape sequences consist of two or more characters, the first of which is the backslash, \ (called the "Escape character"); the remaining characters determine the interpretation of the escape sequence. For example, \n is an escape sequence that denotes a newline character.

Answered by Anonymous
2

\huge\boxed{\fcolorbox{black}{blue}{Answer࿐}}

An escape sequence in C language is a sequence of characters that doesn't represent itself when used inside string literal or character. It is composed of two or more characters starting with backslash \. For example: \n represents new line.

Similar questions