c转义字符表

c语言完整转义字符定义如下:

\a                         响铃(alert(bell) character)

\b                         退格(backspace)

\f                          换页(formfeed)

\n                         换行(newline)

\r                          回车(carriage return)

\t                          水平制表符(horizontal tab)

\v                         垂直制表符(vertical tab)

\\                          反斜杠(backslash)

\?                         问号(question mark)

\'                           单引号(single quote)

\"                          双引号(doble quote)

\ooo                    3位八进制数(octal number)

\xhh                    2位十六进制数(hexadecimal number)

你可能感兴趣的:(c转义字符表)