InterviewSolution
Saved Bookmarks
| 1. |
What is escape sequence give two examples. |
|
Answer» tion: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 |
|