Escape Sequence
Character represented
\n
newline
\t
tab
\\
backslash itself
\’
quote ``’’’
\”
double quote ``”’’
For example,
printf("\\t\\"My name is \\'%s\\'\\"\\n", "Jim");
```Which prints
“My name is ‘Jim’”
Escape Sequence
Character represented
\n
newline
\t
tab
\\
backslash itself
\’
quote ``’’’
\”
double quote ``”’’
For example,
printf("\\t\\"My name is \\'%s\\'\\"\\n", "Jim");
```Which prints
“My name is ‘Jim’”