Initializing an array of pointers to pointers - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:48:17Z http://stackoverflow.com/feeds/question/608511 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/608511/initializing-an-array-of-pointers-to-pointers 1 Initializing an array of pointers to pointers Ree 2009-03-03T22:31:37Z 2009-03-04T17:39:52Z <p>This example works fine:</p> <pre><code>static char *daytab[] = { "hello", "world" }; </code></pre> <p>This doesn't:</p> <pre><code>static char *daytab[] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} }; </code></pre> <p>The way I see it is that the first example creates an array that is filled with pointers to the two string literals (which themselves are arrays). The second example, IMO, should be identical - create an array and fill it with pointers to the two char arrays.</p> <p>Could someone explain to me why the second example is wrong?</p> <p>P.S. You could probably write it like this (haven't tested it):</p> <pre><code>static char a[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; static char b[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; static char *daytab[] = { a, b }; </code></pre> <p>But that looks like too much work :).</p> http://stackoverflow.com/questions/608511/initializing-an-array-of-pointers-to-pointers/608519#608519 3 Answer by Paul Beckingham for Initializing an array of pointers to pointers Paul Beckingham 2009-03-03T22:34:59Z 2009-03-03T22:34:59Z <p>Try:</p> <pre><code>static char daytab[][13] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} }; </code></pre> <p>Those aren't char*'s. They aren't char either. You probably want:</p> <pre><code>static int daytab[][13] ... </code></pre> http://stackoverflow.com/questions/608511/initializing-an-array-of-pointers-to-pointers/608570#608570 2 Answer by Greg Rogers for Initializing an array of pointers to pointers Greg Rogers 2009-03-03T22:49:24Z 2009-03-03T23:07:54Z <p>This:</p> <pre><code>{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} </code></pre> <p>Is just an array initializer. It doesn't itself create an array. The first example, when you assigned a string literal to a pointer, DID create those strings in static storage (hidden to you), and then just assigned the pointers to them.</p> <p>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 like:</p> <pre><code>char a[][] = { {32, 30, 0}, {34, 32, 33, 0} }; // illegal </code></pre> <p>But that is illegal.</p> <p>You need to build the array separately and assign them into an array like your last example.</p> http://stackoverflow.com/questions/608511/initializing-an-array-of-pointers-to-pointers/608666#608666 0 Answer by Pete Kirkham for Initializing an array of pointers to pointers Pete Kirkham 2009-03-03T23:24:19Z 2009-03-03T23:24:19Z <p>The syntax of your second example is the syntax for a multidimensional array literal. </p> <p>A multidimensional array is not an array of pointers to arrays.</p> <p>It would be surprising if the syntax for one thing was also the syntax for a different thing, depending on the type it is declared to be. </p> <p>In the first example, because a string literal is evaluated to a pointer rather than an array value, the value is evaluated as an array of pointers. Because an array literal is evaluated as an array value rather than a pointer, the second example is a multidimensional array - an array whose elements are array values, not an array whose elements are pointers to array values. </p> <p>The following code demonstrates the combinations of multidimensional arrays, pointers to arrays, arrays of pointers, and pointers to pointers. Of these three, only arrays of pointers and pointers to pointers are compatible with each other:</p> <pre><code>void multi_array (int x[][4], size_t len) // multidimensional array { for (size_t i = 0; i &lt; len; ++i) for (size_t j = 0; j &lt; 4; ++j) putchar( 'a' + x[i][j] ); putchar('\n'); } void ptr_array (int (*x)[4], size_t len) // pointer to an array { ... as multi_array } void array_ptr (int *x[], size_t len) // array of pointers { ... as multi_array } void ptr_ptr (int **x, size_t len) // pointer to pointer { ... as multi_array } int main() { int a[][4] = { { 1,2,3,4 } }; int b[] = { 1,2,3,4 }; int* c[] = { b }; multi_array( a, 1 ); multi_array( (int[][4]) { { 1,2,3,4} }, 1 ); // literal syntax as value ptr_array( &amp;b, 1 ); array_ptr( c, 1 ); ptr_ptr( c, 1 ); // only last two are the same return 0; } </code></pre> http://stackoverflow.com/questions/608511/initializing-an-array-of-pointers-to-pointers/608996#608996 0 Answer by aib for Initializing an array of pointers to pointers aib 2009-03-04T02:03:02Z 2009-03-04T17:39:52Z <p>Note that your first example doesn't work, either. It needs to be:</p> <pre><code>static const char *daytab[] = { "hello", "world" }; </code></pre> <p>Note the <em>const</em>.</p> <p>Edit: And by "doesn't work", I mean bad practice and prone to errors, which is arguably worse.</p>