Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to find the size of an integer array in C.

Any method available without traversing the whole array once, to find out the size of the array.

share|improve this question
11  
How did you implement this array? In principle either you know the array size in O(1) (known size), O(N) (nil-terminated), or impossible. – KennyTM May 5 '10 at 12:56
Usually arrays are created as static variable and you must have passed some length while creating it. – Jack May 5 '10 at 13:35
@Jack: Why would arrays "usually" be static??? – sbi May 5 '10 at 13:38
int len = strlen(array); ??? – Joe DF Jan 18 at 0:04
"Any method available without traversing the whole array once, to find out the size of the array." - I would rather like know how you would traverse the array without knowing its size beforehand? – Christian Rau May 14 at 12:05

3 Answers

up vote 29 down vote accepted

If the array is a global, static, or automatic variable (int array[10];), then sizeof(array)/sizeof(array[0]) works.

If it is a dynamically allocated array (int* array = malloc(sizeof(int)*10);) or passed as a function argument (void f(int array[])), then you cannot find its size at run-time. You will have to store the size somewhere.
Note that sizeof(array)/sizeof(array[0]) compiles just fine even for the second case, but it will silently produce the wrong result.

share|improve this answer

If array is static allocated:

size_t size = sizeof(arr) / sizeof(int);

if array is dynamic allocated(heap):

int *arr = malloc(sizeof(int) * size);

where variable size is a dimension of the arr.

share|improve this answer
int len=sizeof(array)/sizeof(int);

Should work.

share|improve this answer
1  
No - in many cases this will not work. – Paul R May 5 '10 at 13:01
2  
It works, however site_t len = sizeof(array)/sizeof(array[0]); it's a bit better (i.e. it still works when datatype of array elements has been changed. – Grzegorz Gierlik May 5 '10 at 13:02
3  
@Grzegorz: Show us how it works for this array: void f(int array[]) { site_t len = sizeof(array)/sizeof(array[0]); } – sbi May 5 '10 at 13:03
@Paul R: Why not? Unless array is an incomplete type (one case); if it's an array of int this will work. – Charles Bailey May 5 '10 at 13:04
@sbi: The poorly named array parameter is actually a pointer. – caf May 5 '10 at 13:16
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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