Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
nonstandard extension used : extended initializer form
With Microsoft extensions (/Ze), you can initialize an unsized array of char
using a string within braces.
Example
// C4207.c
// compile with: /W4
char c[] = { 'a', 'b', "cdefg" }; // C4207
int main()
{
}
Such initializations are invalid under ANSI compatibility (/Za).