added escape sequences table for c programming language
This commit is contained in:
parent
27dfbe9446
commit
cee0f3b6f3
1 changed files with 16 additions and 0 deletions
16
c_escape_sequences.txt
Normal file
16
c_escape_sequences.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
------------- C Programming Language Book pg. 38 -------------
|
||||
The complete set of escape sequences is
|
||||
|
||||
\a alert (bell) character
|
||||
\b backspace
|
||||
\f formfeed
|
||||
\n newline
|
||||
\r carriage return
|
||||
\t horizontal tab
|
||||
\v vertical tab
|
||||
\\ backslash
|
||||
\? question mark
|
||||
\' single quote
|
||||
\" double quote
|
||||
\ooo octabl number
|
||||
\xhh hexidecimal number
|
||||
Loading…
Add table
Add a link
Reference in a new issue