InterviewSolution
Saved Bookmarks
| 1. |
30. What are the escape sequences? 1) Set of characters that convey specialmeaning in a program2) Set of characters that whose use areavoided in C++ programs3) Set of characters that are used in thename of the main function of theprogram4) Set of characters that are avoided incout statements |
|
Answer» ONG>EXPLANATION: An escape sequence is a sequence of characters that does not represent itself when used inside a character or string literal, but is translated into another character or a sequence of characters that may be difficult or IMPOSSIBLE to represent DIRECTLY. |
|