nonstandard extension used : extended initializer form
With Microsoft extensions (/Ze), you can initialize an unsized array of char using a string within braces.
Example
char c[] = { 'a', 'b', "cdefg" };
Such initializations are illegal under ANSI compatibility (/Za).