Compiler Warning (level 4) C4207

nonstandard extension used : extended initializer form

Microsoft C/C++ allows you to initialize an unsized array of char using a string within braces.

The following is an example of this error:

char c[] = { 'a', 'b', "cdefg" };

This extension can prevent your code from being portable to other compilers and will generate an error under the /Za command-line option.