vote up 2 vote down star

Hi, if I have an array of pointers like char **lines, how can i determine its length? Thanks

flag

60% accept rate

4 Answers

vote up 6 vote down check

You can't. You have to manually keep track of the length of arrays.

link|flag
I'll do. thanks – pistacchio May 5 at 21:46
vote up 0 vote down

It depends on the data. If there is no associated count, it could be a NULL terminated list.

char** lines = mysteryfunction();
for ( ;*lines;lines++ ) { 
    printf( "%s\n", *list ); 
}
link|flag
vote up 3 vote down

You can't reliably.

Sometimes, there is a null pointer marking the end - it is one convention sometimes used. More often, you need to be told the length.

But there is no fool-proof way of determining the length. You have to know (or be told) the length, somehow.

link|flag
vote up 1 vote down

That's not an array of pointers, it's a pointer to a pointer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.