char **Data[70]={NULL};
What is the correct terminology for this? How else could it be written? What does it look like in memory? I am reading many tutorials on pointers but I don't see it in this syntax. Any help is appreciated. Thanks.
|
4
|
|
|
|
|
|
This structure
is an array of 70 pointers to pointers to char. The compiler allocates If you internally think of a "pointer to char" as a string, which isn't true but it's close enough, then this is an array of 70 pointers to pointers to strings. To make some ASCII art and pretend that you have allocated and filled some values....
You could do the above with code like this (error checking malloc return values skipped):
Think of it this way: Each entry in the array is a Note carefully the distinction between this and what you get when you allocate a 2D array:
The allocation of Also note (given above declarations of
Here's another way to think about this: Imagine that you have several arrays of pointers to strings:
You have an array of pointers to "array of pointer to char". If you now print the value of |
||||||||
|
|
|
What you've got is an array of 70 pointers, each of which points to another pointer, each of those pointers point to a char. On an interesting note, arrays themselves are pointers so you have three levels of pointers. |
||
|
|
|
It's slightly tricky to think of a practical use for an array of char**. Especially one with 70 elements. However, suppose that I'm going to run 70 programs. As you probably know, program arguments are commonly passed as a Initializing an array with Just like any other array of pointers, initialized with {NULL}, what this looks like in memory is 70 NULL pointers sitting in a row. There's (usually) no difference in memory between a So, the difference between 70 NULL |
|||
|
|
|
|
This isn't very obvious:
but with an alternative declaration, like:
we can easily see that it's a 2 dimensional array of strings.
or Ok, here is what I mean by 2-D array:
|
||||||||||||
|
|
|
This is, effectively, a pointer to a pointer to pointers. However, since a "pointer" is nothing but a location in memory, there really isn't much use in doing this over just doing char* Data[70], other than making it obvious that each char* is a pointer to another char*, instead of a pointer to char. |
||
|
|