Possible Duplicate:
Can a pointer (address) ever be negative?

I'm considering initialising a structure to all -1s with memset(since it uses no signed numbers and zero is a valid value).

Is -1 a valid pointer adress? and are there any other problems with my idea? note: platform is linux/gcc/x86

P.S. I'm trying to initialize a struct that is not all pointers and where zero is valid to all invalid like values so I can optionally do partial initialization in one function and initialise the non initialised fields to default values later on. If there is a pattern/strategy to do this in c?

link|improve this question

60% accept rate
@Naveen: not a duplicate as the OP uses memset. – larsmans Mar 21 '11 at 11:46
feedback

closed as exact duplicate by Naveen, marcog, Paul R, David Heffernan, Prasoon Saurav Mar 21 '11 at 13:33

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

In general, the only valid pointer values are NULL, and pointers to the beginning, inside, and right after, an existing object. Also note that NULL does not necessarily have to be represented as a bit-pattern with zero:s.

On some architectures, -1 is a legal pointer value. Some microcontrollers have RAM in the low part of memory, and read-only memory (like flash) in the upper parts.

link|improve this answer
feedback

The interpretation of -1 as a pointer is architecture-dependent and therefore unreliable.

In general, memset is intended to set bytes, not pointers. C does not make any guarantees as to how individual bytes combine to make a pointer. Even if your solution works, you'll have to document how and why it works.

A better idea, when NULL is a valid value, is to set all pointers to a sentinel of an appropriate type. So, if your structure has a field int *ip:

static const int sentineli;

// in the initialization:
foo->ip = (int *)&sentineli;

then compare with that value. This is self-documenting.

link|improve this answer
They fields are not all pointers – Roman A. Taycher Mar 21 '11 at 11:50
1  
@Roman: initializing a pointer with memset is still a very bad idea. – larsmans Mar 21 '11 at 11:53
feedback

Negative numbers are usually stored in implementation defined manner. Some implementations use 1's complement to store negative numbers, others use 2's complement.

and are there any other problems with my idea?

The code might not be portable across implementations.

link|improve this answer
-1 used with memset will always be the all-one-bits pattern, because the -1 is converted to unsigned char. Of course that does not necessarily match the integer value -1, and there is no such thing as a pointer value of -1 in C. – R.. Mar 21 '11 at 13:28
feedback

On any real world desktop or server system, -1 cast to a pointer is equivalent to the all-bits-one pointer representation, and it is not a valid pointer. Assuming pointer addition takes place as integer addition, if a pointer p has the all-bits-one representation, p+1 is going to be the all-bits-zero pointer, which in the real world is the null pointer.

Nonetheless, none of this is guaranteed by the standard.

link|improve this answer
feedback

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