|
2 |
edited tags
|
||
|
1 |
|
||
Initializing an array of pointers to pointersThis example works fine:
This doesn't:
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. Could someone explain to me why the second example is wrong? P.S. You could probably write it like this (haven't tested it):
But that looks like too much work :).
|
||||
