On Thu, 29 Jan 2009, karl williamson wrote: > The C standard guarantees that one can address one more than > the maximum size of a pointer's data, You can have a pointer that points "just beyond" the allocated size of an array, but you are not allowed to dereference it. It is only valid for comparison with other pointer values, or for subtracting another pointer from it that also points either inside or just beyond the same array object. Cheers, -JanThread Previous | Thread Next