vote up 2 vote down star

I have a char* array as follows:

char *tbl[] = { "1", "2", "3" };

How do I use the sizeof operator to get the number of elements of the array, here 3?

The below did work, but is it correct?

int n = sizeof(tbl) / sizeof(tbl[0])
flag

78% accept rate

3 Answers

vote up 0 vote down

The shorter and, arguably, cleaner version would look as

sizeof tbl / sizeof *tbl

:)

link|flag
vote up 2 vote down

This was actually answered here

And that was the correct way of doing it.

link|flag
vote up 5 vote down

Yes,

int n = sizeof(tbl) / sizeof(tbl[0])

is the most typical way to do this.

link|flag
1  
Anything wrong with using a size_t for sizes? Or at least something unsigned? – Chris Lutz Oct 13 at 16:53

Your Answer

Get an OpenID
or

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