Escape Sequence in c
C has backslash characters which are used to change the output format of the program . it has two characters first one is lash and second is alphabet .below are some examples of Escape sequences
Backlash Constant | Meaning |
---|---|
\b | back space |
\t | horizontal tab |
\n | new line |
\v | veritical tab |
\' | single quote |
\'' | double quote |
\ | Backslash character itself |
\b | back space |
\a | alert(beep) |
\0 | null |