illegal escape sequence
An escape sequence, such as \t, appears outside of a character or string constant. The following sample generates C2017:
char test1='a'\n; // C2017 // try ... // char test2='a\n'; // ok void main() { }