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.
