Re: How to increment array of pointers to strings
- From: Keith Thompson <kst-u@xxxxxxx>
- Date: Wed, 04 Aug 2010 19:23:10 -0700
"Morris Keesan" <mkeesan@xxxxxxxxxxxxxxxx> writes:
On Wed, 04 Aug 2010 18:50:50 -0400, Keith Thompson <kst-u@xxxxxxx> wrote:
barncat <thebarncat@xxxxxxxxx> writes:
[...]
Thanks. The array is actually a ptr to an array of strings, like:
char *name[] = { "one","two","three" };
which yes, i guess is different than **argv.
sorry, i am just confused trying to learn. I guess i could make it an
** object like argv and work with it that way.
Given the above declaration, name is a pointer to the first element
of an array of char*, where each char* happens to point to (the
first character of) a string. (A pointer to an array is not the same
as a pointer to the array's first element.)
Um, ... no. Given the above declaration, name is not any kind of pointer.
It's an array of (char *).
D'oh! You're right, of course. Dumb mistake on my part.
In most cases, when name appears in an expression it will be *converted*
to a pointer to the first element of the array, but name is most definitely
an array, and not a pointer.
Yup.
Remember: in spite of several features of C that seem to conspire
to make you think otherwise, arrays are not pointers, and pointers are
not arrays.
Remember: even though in usage they usually get converted to pointers,
arrays are not pointers.
Right.
--
Keith Thompson (The_Other_Keith) kst-u@xxxxxxx <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
.
- Follow-Ups:
- Re: How to increment array of pointers to strings
- From: barncat
- Re: How to increment array of pointers to strings
- References:
- How to increment array of pointers to strings
- From: barncat
- Re: How to increment array of pointers to strings
- From: Ben Bacarisse
- Re: How to increment array of pointers to strings
- From: barncat
- Re: How to increment array of pointers to strings
- From: Keith Thompson
- Re: How to increment array of pointers to strings
- From: Morris Keesan
- How to increment array of pointers to strings
- Prev by Date: Re: How to increment array of pointers to strings
- Next by Date: Re: Why is it not possible to assign a global variable to another global variable..?
- Previous by thread: Re: How to increment array of pointers to strings
- Next by thread: Re: How to increment array of pointers to strings
- Index(es):
Relevant Pages
|