Appendix C
Character Codes
Escape sequences are specially delimited characters that can be used in literal strings or characters to represent non-printable or special characters. The escape sequences that can be used in C listed in the table below.
| Escape Sequence | Description |
|---|---|
| \n | Newline |
| \r | Carriage return |
| \t | Tab |
| \v | Vertical tab |
| \b | Backspace |
| \f | Form feed |
| \a | Alert |
| \\ | Backslash |
| \" | Double quote (used to include a double quote within a literal string) |
| \' | Single qoute (used to include a single quote within a literal character) |
| \? | Question mark |