Special Characters for C
Special characters in C/C++ consist of a backslash (\) followed by another character. The special characters follow.
Return to iprintf.
\n |
Send the ASCII LF character with the END indicator set. |
\r |
Send the ASCII CR character. |
\\ |
Send the backslash (\) character. |
\t |
Send the ASCII TAB character. |
\### |
Send the ASCII character specified by the octal value ###. |
\v |
Send the ASCII VERTICAL TAB character. |
\f |
Send the ASCII FORM FEED character. |
\” |
Send the ASCII double-quote (“) character. |