DRAFT
NoCharEscape
Incorrect
\ is a normal character in char and String literals
Correct
\ is an escape character in char and String literals
CorrectionHere is what's right.
Here is what's right.
No. The backslash (\
) starts an escape sequence. There must be something following the \
(e.g., like \n
or \\
or \"
), and the \
itself is not part of the content of the literal.