InterviewSolution
Saved Bookmarks
| 1. |
Which of the following escape sequence represents tab?(a) \t(b) \t\r(c) \b(d) \aThis question was posed to me in a national level competition.Query is from Basics in division Basics Concepts of C++ of C++ |
|
Answer» CORRECT option is (a) \t Best EXPLANATION: \t is used to represent TAB which MEANS a SET of blank spaces in a line. |
|