Mohsen_BG

Sorry for not supporting Persian
Ok
Introduction
C++
Introduction
Backslash
Backspace
HorizontalTab
VerticalTab
Form_feed
NewLine
DoubleQuotation
SingleQuotation
CarriageReturn
Alert
An escape sequence contains a backslash (\) symbol followed by one of the escape sequence characters or an octal or hexadecimal number. A hexadecimal escape sequence contains an x followed by one or more hexadecimal digits (0-9, A-F, a-f). An octal escape sequence uses up to three octal digits (0-7). The value of the hexadecimal or octal number specifies the value of the desired character or wide character.
Escape sequence
Character represented
\
Backslash
\b
Backspace
\t
HorizontalTab
\v
VerticalTab
\f
Form_feed
\n
NewLine
\"
DoubleQuotation
\'
SingleQuotation
\r
CarriageReturn
\a
Alert