How can I check to see if an element in an array is empty in C?
if(array[i] == NULL)
Doesn't seem to work.
|
How can I check to see if an element in an array is empty in C?
Doesn't seem to work. |
|||
| show 1 more comment |
|
What do you mean with empty? When a C program is executed, variables that you don't explicitly initialize have got unpredictable values. You need to set all of your array cells to NULL (or to 0, or to whatever value represents emptyness in your program logic) and then you can check it in the way you did:
|
|||||
|
|
Question answer: What you posted is the correct code. Elaboration: If it "doesn't seem to work", perhaps the problem does not lie at this location in your code. If you would post a more complete example of what you have, the code's expected behavior and actual behavior, we may be able to help you. |
|||
|
|
|
Assuming that Note however that if you array is not properly initialized (ie: provide an initial value to each cell), the array most probably contains garbage and your condition will most probably end up being false. |
|||
|
|
array, where is it initialized? – casablanca Nov 14 '10 at 17:59memsetnext time. It's not used by default because you may need to put something else there and don't need this overhead. – ruslik Nov 14 '10 at 18:06