32.3k views
0 votes
You use an escape sequence to include ___________________ in a string.

1 Answer

6 votes

Answer: Include double quote character in a string.

Step-by-step explanation:

Escape sequence characters are not represented by itself, when it is use in the string,literals and character. It is difficult to represent them directly in sequence of characters.

Some characters does not get included directly in the string constant so, that is why we need escape sequence to include double quotes value in string.

Example of double quote are:

Sample\"sample

Then the output is:

sample"sample

User Equanimity
by
7.9k points