Saved Bookmarks
| 1. |
What are escape sequences characters? List any six of them. |
|
Answer» The characters which when used with output functions like printf( ),putc(),put() etc. helps in formatting the output are known as Escape sequence character. The following is a list of six escape sequences. \n Newline \t Horizontal Tab \v Vertical Tab \b Backspace \r Carriage Return \\ Backslash |
|