too many characters in constant
A character constant contains more than two characters. The limit is one character for standard character constants and two characters for long character constants.
An escape sequence, such as \t, is converted to a single character. The following sample generates C2015:
char test1='error'; // C2015 // try .. // char test2='e'; // ok void main() { }