added escape sequences table for c programming language

This commit is contained in:
z3rOR0ne 2022-05-21 04:16:23 -07:00
parent 27dfbe9446
commit cee0f3b6f3

16
c_escape_sequences.txt Normal file
View 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