Unrecognized escape sequences produce compile-time errors
suggest changeThe following examples will not compile:
string s = "\c";
char c = '\c';
Instead, they will produce the error Unrecognized escape sequence
at compile time.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents