English, asked by harshmehto5287, 7 months ago

Which of the following is an escape sequence

Answers

Answered by Anonymous
17

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.

Answered by sriramvsynergy
2

The following escape sequence is as follows are:

  • In computer science, escape sequence is a combination of meaningful letters other than the actual characters contained in them, marked with one or more previous letters.

Examples of Escape Sequences in C:

N (New Line):

  • Used to create a new line and place a cursor there.
  • The words come after 'n' will be pushed.

T (Horizontal Tab):

  • This is a horizontal escape sequence.
  • The following words will be pushed.

B (Backspace):

  • This is the backspace escape sequence.
  • The previous word b ’will be deleted.

R (Return of Cart):

  • This is an escape sequence to stop the cursor at the beginning of the line.
Similar questions