show/hide this revision's text 2 added 294 characters in body

You can't have arrays of undefined size of arrays of undefined size

This:

{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}

Is just an array initializer. That was a mouthfulIt doesn't itself create an array. The first example, so what when you are trying assigned a string literal to do a pointer, DID create those strings in static storage (hidden to you), and then just assigned the pointers to them.

So basically, there is no way to initialize your char* with the array initializer. You need to create an actual array, and assign those numbers to it. You would have to do something likethis:

char a[][] = { "hello", "world" {32, 30, 0}, {34, 32, 33, 0} }; // illegal

Where "hello" and "world" are not just literals, they are copied into space allocated by the compiler at runtime

But that is illegal.

You need to build the individual strings array separately and then put the pointers to assign them in your into an array like your last example.

show/hide this revision's text 1

You can't have arrays of undefined size of arrays of undefined size. That was a mouthful, so what you are trying to do is something like this:

char a[][] = { "hello", "world" }; // illegal

Where "hello" and "world" are not just literals, they are copied into space allocated by the compiler at runtime.

You need to build the individual strings separately and then put the pointers to them in your array.