***WELCOME TO MY BLOG ** More information about me Click Here.

Monday, April 25, 2016

C programming C's Backslash Codes

Code
Meaning
\b
Backspace
\f
Form feed
\n
New line
\r
Carriage return
\t
Tab
\”
Double quote
\’
Single quote
\0
Null
\\
Backslash
\v
Vertical Tab
\a
Alert
\?
Question mark
\N
Octal constant (where N is an octal value)
\xN
Hexadecimal constant (where N is a hexadecimal value)

3 comments: