Is is guaranteed, that a pointer to any object in C points exactly at the
lowest addressed byte of this object?
Specifcally is it possible for any platform/os/compiler combination that:
(char *)v != (void *)v
where v is an int variable for example.
If so, any real-life examples?
lowest addressed byte of this object?
Specifcally is it possible for any platform/os/compiler combination that:
(char *)v != (void *)v
where v is an int variable for example.
If so, any real-life examples?
Comment