If I declare an array like:
int *array;
array=(int *)malloc(10*sizeof(int));
And... I want to know if the array[5] is empty, what could I do?
if(*array[5]==NULL){
printf("is it correct? ");
}
Thanks in advance!
|
If I declare an array like:
And... I want to know if the array[5] is empty, what could I do?
Thanks in advance! |
|||
|
If you fill the array with NULLs before doing anything with it, then put NULL in an array slot after 'emptying' it, then yes, then you need code like so:
You don't need the Also, malloc won't prefill this with NULLs, so don't rely on that. Note however that in this case, putting NULLs in the array wouldn't make much sense. NULL is a special value for an empty pointer, which the individual elements of If you did want
Which makes it a double pointer, or an array of pointers depending on how you use it. Allocating it could work like so:
At that point, each element of |
|||||||||
|
|
It's not empty, and it's also illegal to read from it. |
|||
|
|
|
No use * or [] use
or
but not both since array is a pointer to an int, or an int array (it is the same thing, it depends how you want to see it).
|
|||||||||
|
callocto zero-initialise the array – James Nov 2 '12 at 13:37