special character constants sometimes called Escape Sequences, which are preceded by the backslash character ‘\’, and have special meanings in C.
| \n | newline |
| \t | tab |
| \b | backspace |
| \’ | single quote |
| \” | double quote |
| \0 | null character |
| \xdd | represent as hexadecimal constant |