How to determine the length of an array at compile time?

随声附和 提交于 2019-11-29 07:47:40
(sizeof(array)/sizeof(array[0]))

Or as a macro

#define ARRAY_SIZE(foo) (sizeof(foo)/sizeof(foo[0]))

    int array[10];
    printf("%d %d\n", sizeof(array), ARRAY_SIZE(array));

40 10

Caution: You can apply this ARRAY_SIZE() macro to a pointer to an array and get a garbage value without any compiler warnings or errors.

I wouldn't rely on sizeof since aligment stuff could mess up the thing.

#define COUNT 10
int array[COUNT];

And then you could use COUNT as you want.

    sizeof(array) / sizeof(int) 

im not aware of a builtin that does this, but i recently used:

sizeof(array)/sizeof(array[0])

to do just that

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!