I know that calloc request memory to be used, writes 0 on all the bits and then returns a pointer to it.

My question is: if I use calloc with a structure that contains pointers, will those pointers have the NULL value or do I have to set them to point to NULL?

struct a{
char * name;
void * p;
}* A;

So basically, will name and p point to NULL after I've used calloc with struct a?

Thanks!

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

Somehow you've gotten a lot of incorrect answers. C does not require the representation of null pointers to be all-zero-bits. Many people mistakenly think it does, since an integer constant expression with value 0, converted to a pointer, becomes a null pointer.

With that said, on all real-world systems, null pointers are all-zero-bits, and calloc is a perfectly reasonable way to get a null-pointer-initialized pointer array in the real world.

link|improve this answer
2  
+1: the only answer I've seen that's even close to right. I believe some IBM and Unisys systems use null pointers in which not all bits are zero. For that matter a x86 can as well -- a segment value of 0 gives a null pointer, regardless of the offset. All bits zero will work, but other null pointer values are possible as well. – Jerry Coffin May 2 '11 at 13:28
Just because some nonzero segment:offset pointer can evaluate to the same as linear address zero, I would not call it a "null pointer". A C compiler would have to go to generate code to perform costly extra work to check null pointers if you were to call these null pointers, and it would not improve the quality of the implementation since only the representation created by the compiler need be treated as a null pointer by the code it generates (null pointers never arise from arithmetic, only from constant expressions). – R.. May 2 '11 at 13:35
Actually the only reasons I can think of to use non-all-zero-bits for the null pointer are (1) if address 0 needs to be addressable, or (2) if you want null pointer dereference to generate a trap, and address 0 does not generate a trap, but some other address does. It's always valid, regardless of the hardware, to make a C implementation where null pointers are all-zero-bits, and thus, short of any compelling reason not to, implementors should always use all-zero-bits as the null pointer representation. – R.. May 2 '11 at 13:37
@R. Not so. It's not a matter of evaluating to the same linear address. Part of how Intel defines protected mode is that segment 0 can't be dereferenced (there is no linear address associated with it). No costly extra work would be needed -- it just has to check the segment part and ignore the offset. – Jerry Coffin May 2 '11 at 13:38
@R. You can argue about how things should be all you want -- it won't change how things really are. – Jerry Coffin May 2 '11 at 13:39
show 3 more comments
feedback

Yes, they will. Similarly if you do this:

static char * a[100];

all the pointers in the array will be NULL.

link|improve this answer
It could be worth noting that this is true only if NULL is defined as being 0. – Cicada May 2 '11 at 13:17
Note - however, that if a[i] is a pointer to some struct b { ... int x; } then a[i]->x will yield a non-zero address which may or may fault. Unlike Java where if a[i] is a null reference any use of it will yield an NPE. – Jay May 2 '11 at 13:20
@Heandel There is a lot of confusion about that. In fact, NULL must be defined as either 0 or (void *) 0, depending. – nbt May 2 '11 at 13:20
@Heandel: Your comment is unclear but I think you have it backwards. C requires the elements of the array in unapersson's answer to be initialized to null pointers regardless of whether the representation for a null pointer is all-zero-bits. – R.. May 2 '11 at 13:21
1  
-1: NULL must be defined as 0 -- but when 0 is converted to a pointer, the result may contain non-zero bits. With calloc, all the bits will be zero. This does produce a null pointer on many systems, but you can't depend on it. – Jerry Coffin May 2 '11 at 13:33
show 4 more comments
feedback

The ISO C standard for calloc requires it to initialize everything to 0. That means that if you end up veiwing memory allocated by calloc as pointers, it will indeed initially contain NULL (0) pointers.

link|improve this answer
If NULL is defined as being 0. – Cicada May 2 '11 at 13:25
1  
"Being 0" is imprecise. What you mean is "if all-zero-bits is the representation for null pointers". – R.. May 2 '11 at 13:31
feedback

Yes, the pointers will be NULL, as NULL == 0.

(AFAIK the C standard says that only the compiler at compile time must support this, but I have never heard of an architecture where this is different at runtime even though the C standard would allow this)

link|improve this answer
This is a misleading way of explaining it. C just says that an integer constant expression evaluating to 0, converted to a pointer, yields the null pointer. (void *)(0,0) for instance need not yield a null pointer (because (0,0) is not a constant expression). – R.. May 2 '11 at 13:30
This is kind of a trick question, as even though NULL == 0 is true, that doesn't mean that the null pointer has all bits set to zero. I have worked on old Unisys hardware where addresses 0-128 were the CPU registers. – Bo Persson May 2 '11 at 17:29
feedback

Your Answer

 
or
required, but never shown

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