DRAFT
Observed
\ is a normal character in char and String literals
\ is an escape character in char and String literals
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.
Follow us on twitter to hear about new misconceptions.